Skip to content

Commit

Permalink
Make slots private
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Mar 25, 2019
1 parent 9b49f8d commit eb64810
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/app/qgsattributesformproperties.h
Expand Up @@ -194,11 +194,6 @@ class APP_EXPORT QgsAttributesFormProperties : public QWidget, private Ui_QgsAtt
void initInitPython();
void initSuppressCombo();

public slots:

void onInvertSelectionButtonClicked( bool checked );
void onAttributeSelectionChanged();

protected:
void updateButtons();

Expand All @@ -213,7 +208,13 @@ class APP_EXPORT QgsAttributesFormProperties : public QWidget, private Ui_QgsAtt
QgsAttributeTypeDialog *mAttributeTypeDialog = nullptr;
QgsAttributeRelationEdit *mAttributeRelationEdit = nullptr;

private slots:

void onInvertSelectionButtonClicked( bool checked );
void onAttributeSelectionChanged();

private:

void loadAttributeTypeDialog();
void storeAttributeTypeDialog( );

Expand Down

0 comments on commit eb64810

Please sign in to comment.