Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix warning: use editTextChanged signal instead of textChanged one fo…
…r QComboBox
  • Loading branch information
slarosa committed Jan 29, 2016
1 parent 909910e commit 70d5c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/qgsoptions.cpp
Expand Up @@ -89,7 +89,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl ) :

connect( cmbIconSize, SIGNAL( activated( const QString& ) ), this, SLOT( iconSizeChanged( const QString& ) ) );
connect( cmbIconSize, SIGNAL( highlighted( const QString& ) ), this, SLOT( iconSizeChanged( const QString& ) ) );
connect( cmbIconSize, SIGNAL( textChanged( const QString& ) ), this, SLOT( iconSizeChanged( const QString& ) ) );
connect( cmbIconSize, SIGNAL( editTextChanged( const QString& ) ), this, SLOT( iconSizeChanged( const QString& ) ) );

connect( this, SIGNAL( accepted() ), this, SLOT( saveOptions() ) );
connect( this, SIGNAL( rejected() ), this, SLOT( rejectOptions() ) );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/gps_importer/qgsgpsplugingui.cpp
Expand Up @@ -69,7 +69,7 @@ QgsGPSPluginGui::QgsGPSPluginGui( const BabelMap& importers,
this, SLOT( enableRelevantControls() ) );
connect( leDLBasename, SIGNAL( textChanged( const QString& ) ),
this, SLOT( enableRelevantControls() ) );
connect( cmbULLayer, SIGNAL( textChanged( QString ) ),
connect( cmbULLayer, SIGNAL( editTextChanged( const QString& ) ),
this, SLOT( enableRelevantControls() ) );
connect( tabWidget, SIGNAL( currentChanged( int ) ),
this, SLOT( enableRelevantControls() ) );
Expand Down

0 comments on commit 70d5c1b

Please sign in to comment.