@@ -354,13 +354,13 @@ QgsProjectProperties::QgsProjectProperties( QgsMapCanvas* mapCanvas, QWidget *pa
354
354
QStringList wfstDeleteLayerIdList = QgsProject::instance ()->readListEntry ( " WFSTLayers" , " Delete" );
355
355
356
356
QSignalMapper *smPublied = new QSignalMapper ( this );
357
- connect ( smPublied, SIGNAL ( mapped ( int ) ), this , SLOT ( on_cbxWFSPublied_stateChanged ( int ) ) );
357
+ connect ( smPublied, SIGNAL ( mapped ( int ) ), this , SLOT ( cbxWFSPubliedStateChanged ( int ) ) );
358
358
QSignalMapper *smUpdate = new QSignalMapper ( this );
359
- connect ( smUpdate, SIGNAL ( mapped ( int ) ), this , SLOT ( on_cbxWFSUpdate_stateChanged ( int ) ) );
359
+ connect ( smUpdate, SIGNAL ( mapped ( int ) ), this , SLOT ( cbxWFSUpdateStateChanged ( int ) ) );
360
360
QSignalMapper *smInsert = new QSignalMapper ( this );
361
- connect ( smInsert, SIGNAL ( mapped ( int ) ), this , SLOT ( on_cbxWFSInsert_stateChanged ( int ) ) );
361
+ connect ( smInsert, SIGNAL ( mapped ( int ) ), this , SLOT ( cbxWFSInsertStateChanged ( int ) ) );
362
362
QSignalMapper *smDelete = new QSignalMapper ( this );
363
- connect ( smDelete, SIGNAL ( mapped ( int ) ), this , SLOT ( on_cbxWFSDelete_stateChanged ( int ) ) );
363
+ connect ( smDelete, SIGNAL ( mapped ( int ) ), this , SLOT ( cbxWFSDeleteStateChanged ( int ) ) );
364
364
365
365
twWFSLayers->setColumnCount ( 5 );
366
366
twWFSLayers->horizontalHeader ()->setVisible ( true );
@@ -838,7 +838,7 @@ void QgsProjectProperties::on_cbxProjectionEnabled_toggled( bool onFlyEnabled )
838
838
updateEllipsoidUI ( mEllipsoidIndex );
839
839
}
840
840
841
- void QgsProjectProperties::on_cbxWFSPublied_stateChanged ( int aIdx )
841
+ void QgsProjectProperties::cbxWFSPubliedStateChanged ( int aIdx )
842
842
{
843
843
QCheckBox* cb = qobject_cast<QCheckBox *>( twWFSLayers->cellWidget ( aIdx, 1 ) );
844
844
if ( cb && !cb->isChecked () )
@@ -849,7 +849,7 @@ void QgsProjectProperties::on_cbxWFSPublied_stateChanged( int aIdx )
849
849
}
850
850
}
851
851
852
- void QgsProjectProperties::on_cbxWFSUpdate_stateChanged ( int aIdx )
852
+ void QgsProjectProperties::cbxWFSUpdateStateChanged ( int aIdx )
853
853
{
854
854
QCheckBox* cb = qobject_cast<QCheckBox *>( twWFSLayers->cellWidget ( aIdx, 2 ) );
855
855
if ( cb && cb->isChecked () )
@@ -866,7 +866,7 @@ void QgsProjectProperties::on_cbxWFSUpdate_stateChanged( int aIdx )
866
866
}
867
867
}
868
868
869
- void QgsProjectProperties::on_cbxWFSInsert_stateChanged ( int aIdx )
869
+ void QgsProjectProperties::cbxWFSInsertStateChanged ( int aIdx )
870
870
{
871
871
QCheckBox* cb = qobject_cast<QCheckBox *>( twWFSLayers->cellWidget ( aIdx, 3 ) );
872
872
if ( cb && cb->isChecked () )
@@ -883,7 +883,7 @@ void QgsProjectProperties::on_cbxWFSInsert_stateChanged( int aIdx )
883
883
}
884
884
}
885
885
886
- void QgsProjectProperties::on_cbxWFSDelete_stateChanged ( int aIdx )
886
+ void QgsProjectProperties::cbxWFSDeleteStateChanged ( int aIdx )
887
887
{
888
888
QCheckBox* cb = qobject_cast<QCheckBox *>( twWFSLayers->cellWidget ( aIdx, 4 ) );
889
889
if ( cb && cb->isChecked () )
0 commit comments