Make some protected members private

This commit is contained in:
Nyall Dawson 2018-09-08 19:06:20 +10:00
parent 13ab5e51ac
commit f979c8e80a
2 changed files with 7 additions and 11 deletions

View File

@ -213,15 +213,6 @@ Enables or disables the groupTree items for grouping mode
sets the text of the item with bold font
%End
};
/************************************************************************

View File

@ -169,6 +169,12 @@ class GUI_EXPORT QgsStyleManagerDialog : public QDialog, private Ui::QgsStyleMan
//! sets the text of the item with bold font
void setBold( QStandardItem * );
private slots:
void tabItemType_currentChanged( int );
private:
QgsStyle *mStyle = nullptr;
QString mStyleFilename;
@ -193,9 +199,8 @@ class GUI_EXPORT QgsStyleManagerDialog : public QDialog, private Ui::QgsStyleMan
//! Menu for the "Add item" toolbutton when in colorramp mode
QMenu *mMenuBtnAddItemColorRamp = nullptr;
private slots:
void tabItemType_currentChanged( int );
};
#endif