@@ -61,7 +61,7 @@ QgsWFSSourceSelect::QgsWFSSourceSelect( QWidget* parent, Qt::WFlags fl, bool emb
61
61
connect ( mAddButton , SIGNAL ( clicked () ), this , SLOT ( addLayer () ) );
62
62
63
63
buttonBox->addButton ( mBuildQueryButton , QDialogButtonBox::ActionRole );
64
- connect ( mBuildQueryButton , SIGNAL ( clicked () ), this , SLOT ( on_mBuildQueryButton_clicked () ) );
64
+ connect ( mBuildQueryButton , SIGNAL ( clicked () ), this , SLOT ( buildQueryButtonClicked () ) );
65
65
66
66
connect ( buttonBox, SIGNAL ( rejected () ), this , SLOT ( reject () ) );
67
67
connect ( btnNew, SIGNAL ( clicked () ), this , SLOT ( addEntryToServerList () ) );
@@ -94,8 +94,8 @@ QgsWFSSourceSelect::QgsWFSSourceSelect( QWidget* parent, Qt::WFlags fl, bool emb
94
94
mModelProxy ->setSortCaseSensitivity ( Qt::CaseInsensitive );
95
95
treeView->setModel ( mModelProxy );
96
96
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& ) ) );
99
99
}
100
100
101
101
QgsWFSSourceSelect::~QgsWFSSourceSelect ()
@@ -519,13 +519,13 @@ void QgsWFSSourceSelect::on_btnLoad_clicked()
519
519
emit connectionsChanged ();
520
520
}
521
521
522
- void QgsWFSSourceSelect::on_treeWidget_itemDoubleClicked ( const QModelIndex& index )
522
+ void QgsWFSSourceSelect::treeWidgetItemDoubleClicked ( const QModelIndex& index )
523
523
{
524
524
QgsDebugMsg ( " double click called" );
525
525
buildQuery ( index );
526
526
}
527
527
528
- void QgsWFSSourceSelect::on_treeWidget_currentRowChanged ( const QModelIndex & current, const QModelIndex & previous )
528
+ void QgsWFSSourceSelect::treeWidgetCurrentRowChanged ( const QModelIndex & current, const QModelIndex & previous )
529
529
{
530
530
Q_UNUSED ( previous )
531
531
QgsDebugMsg ( " treeWidget_currentRowChanged called" );
@@ -534,7 +534,7 @@ void QgsWFSSourceSelect::on_treeWidget_currentRowChanged( const QModelIndex & cu
534
534
mAddButton ->setEnabled ( current.isValid () );
535
535
}
536
536
537
- void QgsWFSSourceSelect::on_mBuildQueryButton_clicked ()
537
+ void QgsWFSSourceSelect::buildQueryButtonClicked ()
538
538
{
539
539
QgsDebugMsg ( " mBuildQueryButton click called" );
540
540
buildQuery ( treeView->selectionModel ()->currentIndex () );
0 commit comments