mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-16 00:05:45 -04:00
Protected->private
This commit is contained in:
parent
35411af6f6
commit
85e1fbed18
@ -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();
|
||||
|
||||
};
|
||||
|
||||
/************************************************************************
|
||||
|
@ -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();
|
||||
|
||||
};
|
||||
|
||||
/************************************************************************
|
||||
|
@ -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();
|
||||
|
||||
};
|
||||
|
||||
/************************************************************************
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user