Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Qt connection error
  • Loading branch information
dakcarto committed Mar 3, 2013
1 parent 95bcc7f commit 0141acd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/composer/qgscomposertablewidget.cpp
Expand Up @@ -55,7 +55,7 @@ QgsComposerTableWidget::QgsComposerTableWidget( QgsComposerAttributeTable* table
if ( mComposerTable )
{
QObject::connect( mComposerTable, SIGNAL( maximumNumberOfFeaturesChanged( int ) ), this, SLOT( setMaximumNumberOfFeatures( int ) ) );
QObject::connect( mComposerTable, SIGNAL( itemChanged ), this, SLOT( updateGuiElements() ) );
QObject::connect( mComposerTable, SIGNAL( itemChanged() ), this, SLOT( updateGuiElements() ) );
}
}

Expand Down

0 comments on commit 0141acd

Please sign in to comment.