mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-11 00:04:27 -04:00
remove setReloadTime because it's not used anymore
This commit is contained in:
parent
43f77fda58
commit
8a226671f5
@ -145,11 +145,6 @@ Add a NULL entry to the list.
|
||||
void setAllowNull( bool allowNull );
|
||||
%Docstring
|
||||
Add a NULL entry to the list.
|
||||
%End
|
||||
|
||||
void setReloadTimerInterval( int interval );
|
||||
%Docstring
|
||||
Set the model reload timer interval in milliseconds
|
||||
%End
|
||||
|
||||
signals:
|
||||
|
@ -549,8 +549,3 @@ void QgsFeatureFilterModel::setExtraIdentifierValue( const QVariant &extraIdenti
|
||||
|
||||
emit extraIdentifierValueChanged();
|
||||
}
|
||||
|
||||
void QgsFeatureFilterModel::setReloadTimerInterval( int interval )
|
||||
{
|
||||
mReloadTimer.setInterval( interval );
|
||||
}
|
||||
|
@ -178,11 +178,6 @@ class CORE_EXPORT QgsFeatureFilterModel : public QAbstractItemModel
|
||||
*/
|
||||
void setAllowNull( bool allowNull );
|
||||
|
||||
/**
|
||||
* Set the model reload timer interval in milliseconds
|
||||
*/
|
||||
void setReloadTimerInterval( int interval );
|
||||
|
||||
signals:
|
||||
|
||||
/**
|
||||
|
@ -33,7 +33,6 @@ QgsFeatureListComboBox::QgsFeatureListComboBox( QWidget *parent )
|
||||
mCompleter->setFilterMode( Qt::MatchContains );
|
||||
setCompleter( mCompleter );
|
||||
mCompleter->setWidget( this );
|
||||
mModel->setReloadTimerInterval( 1000 );
|
||||
connect( mModel, &QgsFeatureFilterModel::sourceLayerChanged, this, &QgsFeatureListComboBox::sourceLayerChanged );
|
||||
connect( mModel, &QgsFeatureFilterModel::displayExpressionChanged, this, &QgsFeatureListComboBox::displayExpressionChanged );
|
||||
connect( mModel, &QgsFeatureFilterModel::filterExpressionChanged, this, &QgsFeatureListComboBox::filterExpressionChanged );
|
||||
|
Loading…
x
Reference in New Issue
Block a user