diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2019-03-03 18:44:34 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2019-03-03 18:44:34 +0000 |
| commit | e0c3dcb6f20ba542bcae375176ae02205591e692 (patch) | |
| tree | e03022992324878ab2cdd72d9d5f5d89d0277743 /src/qmmpui/uifactory.h | |
| parent | 4e8071d478eeb2b0dc4b28616e9ef8419896b846 (diff) | |
| download | qmmp-e0c3dcb6f20ba542bcae375176ae02205591e692.tar.gz qmmp-e0c3dcb6f20ba542bcae375176ae02205591e692.tar.bz2 qmmp-e0c3dcb6f20ba542bcae375176ae02205591e692.zip | |
changed properties api
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8744 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/uifactory.h')
| -rw-r--r-- | src/qmmpui/uifactory.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/qmmpui/uifactory.h b/src/qmmpui/uifactory.h index aacab168b..ecec99294 100644 --- a/src/qmmpui/uifactory.h +++ b/src/qmmpui/uifactory.h @@ -29,21 +29,13 @@ class QWidget; class Control; class General; -/*! @brief Helper class to store user interface plugin properies. +/*! @brief Structure to store user interface plugin properies. */ -class QMMPUI_EXPORT UiProperties +struct UiProperties { -public: - /*! - * Constructor - */ - UiProperties() - { - hasAbout = false; - } - QString name; /*!< File dialog plugin full name */ - QString shortName; /*!< File dialog short name for internal usage */ - bool hasAbout; /*!< Should be \b true if plugin has about dialog, otherwise returns \b false */ + QString name; /*!< File dialog plugin full name */ + QString shortName; /*!< File dialog short name for internal usage */ + bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise returns \b false */ }; /*! @brief User interface plugin interface. * @author Ilya Kotov <forkotov02@ya.ru> |
