Skip to content

Commit

Permalink
[layertree] Fix broken signal connection
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed May 26, 2014
1 parent 629cd7a commit 8499b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/layertree/qgslayertreeview.cpp
Expand Up @@ -53,7 +53,7 @@ void QgsLayerTreeView::setModel( QAbstractItemModel* model )
return;

connect( model, SIGNAL( rowsInserted( QModelIndex, int, int ) ), this, SLOT( modelRowsInserted( QModelIndex, int, int ) ) );
connect( model, SIGNAL( rowsRemoved( QModelIndex, int, int ) ), this, SLOT( modelRowsRemoved( QModelIndex, int, int ) ) );
connect( model, SIGNAL( rowsRemoved( QModelIndex, int, int ) ), this, SLOT( modelRowsRemoved() ) );

QTreeView::setModel( model );

Expand Down

0 comments on commit 8499b4d

Please sign in to comment.