@@ -61,7 +61,7 @@ QgsWFSSourceSelect::QgsWFSSourceSelect( QWidget* parent, Qt::WFlags fl, bool emb
6161 connect ( mAddButton , SIGNAL ( clicked () ), this , SLOT ( addLayer () ) );
6262
6363 buttonBox->addButton ( mBuildQueryButton , QDialogButtonBox::ActionRole );
64- connect ( mBuildQueryButton , SIGNAL ( clicked () ), this , SLOT ( on_mBuildQueryButton_clicked () ) );
64+ connect ( mBuildQueryButton , SIGNAL ( clicked () ), this , SLOT ( buildQueryButtonClicked () ) );
6565
6666 connect ( buttonBox, SIGNAL ( rejected () ), this , SLOT ( reject () ) );
6767 connect ( btnNew, SIGNAL ( clicked () ), this , SLOT ( addEntryToServerList () ) );
@@ -94,8 +94,8 @@ QgsWFSSourceSelect::QgsWFSSourceSelect( QWidget* parent, Qt::WFlags fl, bool emb
9494 mModelProxy ->setSortCaseSensitivity ( Qt::CaseInsensitive );
9595 treeView->setModel ( mModelProxy );
9696
97- connect ( treeView, SIGNAL ( doubleClicked ( const QModelIndex& ) ), this , SLOT ( on_treeWidget_itemDoubleClicked ( const QModelIndex& ) ) );
98- connect ( treeView->selectionModel (), SIGNAL ( currentRowChanged ( QModelIndex, QModelIndex ) ), this , SLOT ( on_treeWidget_currentRowChanged ( const QModelIndex&, const QModelIndex& ) ) );
97+ connect ( treeView, SIGNAL ( doubleClicked ( const QModelIndex& ) ), this , SLOT ( treeWidgetItemDoubleClicked ( const QModelIndex& ) ) );
98+ connect ( treeView->selectionModel (), SIGNAL ( currentRowChanged ( QModelIndex, QModelIndex ) ), this , SLOT ( treeWidgetCurrentRowChanged ( const QModelIndex&, const QModelIndex& ) ) );
9999}
100100
101101QgsWFSSourceSelect::~QgsWFSSourceSelect ()
@@ -519,13 +519,13 @@ void QgsWFSSourceSelect::on_btnLoad_clicked()
519519 emit connectionsChanged ();
520520}
521521
522- void QgsWFSSourceSelect::on_treeWidget_itemDoubleClicked ( const QModelIndex& index )
522+ void QgsWFSSourceSelect::treeWidgetItemDoubleClicked ( const QModelIndex& index )
523523{
524524 QgsDebugMsg ( " double click called" );
525525 buildQuery ( index );
526526}
527527
528- void QgsWFSSourceSelect::on_treeWidget_currentRowChanged ( const QModelIndex & current, const QModelIndex & previous )
528+ void QgsWFSSourceSelect::treeWidgetCurrentRowChanged ( const QModelIndex & current, const QModelIndex & previous )
529529{
530530 Q_UNUSED ( previous )
531531 QgsDebugMsg ( " treeWidget_currentRowChanged called" );
@@ -534,7 +534,7 @@ void QgsWFSSourceSelect::on_treeWidget_currentRowChanged( const QModelIndex & cu
534534 mAddButton ->setEnabled ( current.isValid () );
535535}
536536
537- void QgsWFSSourceSelect::on_mBuildQueryButton_clicked ()
537+ void QgsWFSSourceSelect::buildQueryButtonClicked ()
538538{
539539 QgsDebugMsg ( " mBuildQueryButton click called" );
540540 buildQuery ( treeView->selectionModel ()->currentIndex () );
0 commit comments