Skip to content

Commit 8499b4d

Browse files
committed
[layertree] Fix broken signal connection
1 parent 629cd7a commit 8499b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/layertree/qgslayertreeview.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void QgsLayerTreeView::setModel( QAbstractItemModel* model )
5353
return;
5454

5555
connect( model, SIGNAL( rowsInserted( QModelIndex, int, int ) ), this, SLOT( modelRowsInserted( QModelIndex, int, int ) ) );
56-
connect( model, SIGNAL( rowsRemoved( QModelIndex, int, int ) ), this, SLOT( modelRowsRemoved( QModelIndex, int, int ) ) );
56+
connect( model, SIGNAL( rowsRemoved( QModelIndex, int, int ) ), this, SLOT( modelRowsRemoved() ) );
5757

5858
QTreeView::setModel( model );
5959

0 commit comments

Comments
 (0)