diff --git a/editors/common/ComponentItemAutoConnector/AutoConnector.cpp b/editors/common/ComponentItemAutoConnector/AutoConnector.cpp index 861ed971f..b90c058c3 100644 --- a/editors/common/ComponentItemAutoConnector/AutoConnector.cpp +++ b/editors/common/ComponentItemAutoConnector/AutoConnector.cpp @@ -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_); } diff --git a/version.h b/version.h index c7123cc5e..c33942da6 100644 --- a/version.h +++ b/version.h @@ -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