Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[composer] Fix save world file does not work (fix #15268)
  • Loading branch information
nyalldawson committed Sep 30, 2016
1 parent ddcea34 commit 38a811b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgscomposeritemcombobox.cpp
Expand Up @@ -23,7 +23,7 @@ QgsComposerItemComboBox::QgsComposerItemComboBox( QWidget *parent, QgsCompositio
setComposition( composition );

setModelColumn( QgsComposerModel::ItemId );
connect( this, SIGNAL( activated( int ) ), this, SLOT( indexChanged( int ) ) );
connect( this, SIGNAL( currentIndexChanged( int ) ), this, SLOT( indexChanged( int ) ) );
connect( mProxyModel, SIGNAL( rowsInserted( QModelIndex, int, int ) ), this, SLOT( rowsChanged() ) );
connect( mProxyModel, SIGNAL( rowsRemoved( QModelIndex, int, int ) ), this, SLOT( rowsChanged() ) );
}
Expand Down

0 comments on commit 38a811b

Please sign in to comment.