Protected->private

This commit is contained in:
Nyall Dawson 2020-03-08 12:01:40 +10:00
parent 35411af6f6
commit 85e1fbed18
6 changed files with 3 additions and 15 deletions

View File

@ -80,10 +80,6 @@ Refreshes the list of available schemas.
Emitted whenever the currently selected schema changes.
%End
protected slots:
void indexChanged( int i );
void rowsChanged();
};
/************************************************************************

View File

@ -96,10 +96,6 @@ Refreshes the list of available tables.
Emitted whenever the currently selected table changes.
%End
protected slots:
void indexChanged( int i );
void rowsChanged();
};
/************************************************************************

View File

@ -61,10 +61,6 @@ Sets the current connection selected in the combo box.
Emitted whenever the currently selected connection changes.
%End
protected slots:
void indexChanged( int i );
void rowsChanged();
};
/************************************************************************

View File

@ -88,7 +88,7 @@ class GUI_EXPORT QgsDatabaseSchemaComboBox : public QWidget
//! Emitted whenever the currently selected schema changes.
void schemaChanged( const QString &schema );
protected slots:
private slots:
void indexChanged( int i );
void rowsChanged();

View File

@ -104,7 +104,7 @@ class GUI_EXPORT QgsDatabaseTableComboBox : public QWidget
//! Emitted whenever the currently selected table changes.
void tableChanged( const QString &table, const QString &schema = QString() );
protected slots:
private slots:
void indexChanged( int i );
void rowsChanged();

View File

@ -68,7 +68,7 @@ class GUI_EXPORT QgsProviderConnectionComboBox : public QComboBox
//! Emitted whenever the currently selected connection changes.
void connectionChanged( const QString &connection );
protected slots:
private slots:
void indexChanged( int i );
void rowsChanged();