Skip to content

Commit

Permalink
Protected->private
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 9, 2020
1 parent 35411af commit 85e1fbe
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 15 deletions.
4 changes: 0 additions & 4 deletions python/gui/auto_generated/qgsdatabaseschemacombobox.sip.in
Expand Up @@ -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();

};

/************************************************************************
Expand Down
4 changes: 0 additions & 4 deletions python/gui/auto_generated/qgsdatabasetablecombobox.sip.in
Expand Up @@ -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();

};

/************************************************************************
Expand Down
Expand Up @@ -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();

};

/************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsdatabaseschemacombobox.h
Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsdatabasetablecombobox.h
Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsproviderconnectioncombobox.h
Expand Up @@ -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();

Expand Down

0 comments on commit 85e1fbe

Please sign in to comment.