From 0c7d03e9f205a1a5b3a6f59e0066f6e49137f4cf Mon Sep 17 00:00:00 2001 From: vsr Date: Wed, 27 Feb 2019 18:44:19 +0300 Subject: [PATCH] Fix misprint (connecting non-existent signal) --- src/SUIT/SUIT_TreeModel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SUIT/SUIT_TreeModel.cxx b/src/SUIT/SUIT_TreeModel.cxx index dd02eb497..959c55dd1 100755 --- a/src/SUIT/SUIT_TreeModel.cxx +++ b/src/SUIT/SUIT_TreeModel.cxx @@ -1849,7 +1849,7 @@ SUIT_ProxyModel::SUIT_ProxyModel( SUIT_AbstractModel* model, QObject* parent ) connect( *model, SIGNAL( clicked( SUIT_DataObject*, int ) ), this, SIGNAL( clicked( SUIT_DataObject*, int ) ) ); connect( *model, SIGNAL( dropped( const QList&, SUIT_DataObject*, int, Qt::DropAction ) ), this, SIGNAL( dropped( const QList&, SUIT_DataObject*, int, Qt::DropAction ) ) ); - connect( *model, SIGNAL( renamed( SUIT_DataObject* ) ), this, SIGNAL( rename( SUIT_DataObject* ) ) ); + connect( *model, SIGNAL( renamed( SUIT_DataObject* ) ), this, SIGNAL( renamed( SUIT_DataObject* ) ) ); setSourceModel( *model ); setDynamicSortFilter( true ); } -- 2.39.2