Skip to content

Commit

Permalink
[CORRECTIVE] Fix another memory leak in component instance connection…
Browse files Browse the repository at this point in the history
… editor.
  • Loading branch information
hagantsa committed Apr 22, 2024
1 parent d81bbe9 commit 82d1ab7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions editors/common/ComponentItemAutoConnector/AutoConnector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ void AutoConnector::setupLayout(QString const& firstComponentName, QString const
connectorTableTools_.listFiller_->initializeList(firstListModel, firstComponentContainer_.component_);
connectorTableTools_.listFiller_->initializeList(secondListModel, secondComponentContainer_.component_);

firstListFilter_ = new AutoConnectorListFilter(connectorTable_, 0, firstHideBox);
firstListFilter_ = new AutoConnectorListFilter(connectorTable_, 0, firstHideBox, this);
firstListFilter_->setSourceModel(firstListModel);
firstItemList_->setModel(firstListFilter_);
secondListFilter_ = new AutoConnectorListFilter(connectorTable_, 1, secondHideBox);
secondListFilter_ = new AutoConnectorListFilter(connectorTable_, 1, secondHideBox, this);
secondListFilter_->setSourceModel(secondListModel);
secondItemList_->setModel(secondListFilter_);
}
Expand Down
16 changes: 8 additions & 8 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
#ifndef VERSIONNO__H
#define VERSIONNO__H

#define VERSION_FULL 3.13.489.0
#define VERSION_FULL 3.13.492.0

#define VERSION_BASEYEAR 0
#define VERSION_DATE "2024-04-17"
#define VERSION_TIME "15:35:47"
#define VERSION_DATE "2024-04-22"
#define VERSION_TIME "11:38:21"

#define VERSION_MAJOR 3
#define VERSION_MINOR 13
#define VERSION_BUILDNO 489
#define VERSION_BUILDNO 492
#define VERSION_EXTEND 0

#define VERSION_FILE 3,13,489,0
#define VERSION_PRODUCT 3,13,489,0
#define VERSION_FILESTR "3,13,489,0"
#define VERSION_PRODUCTSTR "3,13,489,0"
#define VERSION_FILE 3,13,492,0
#define VERSION_PRODUCT 3,13,492,0
#define VERSION_FILESTR "3,13,492,0"
#define VERSION_PRODUCTSTR "3,13,492,0"

#endif

0 comments on commit 82d1ab7

Please sign in to comment.