aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/filedialogfactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmmpui/filedialogfactory.h')
-rw-r--r--src/qmmpui/filedialogfactory.h17
1 files changed, 4 insertions, 13 deletions
diff --git a/src/qmmpui/filedialogfactory.h b/src/qmmpui/filedialogfactory.h
index baf40451c..1354d68e2 100644
--- a/src/qmmpui/filedialogfactory.h
+++ b/src/qmmpui/filedialogfactory.h
@@ -27,24 +27,15 @@ class FileDialog;
class QWidget;
class QString;
-/*! @brief Helper class to store file dialog plugin properties.
+/*! @brief Structure to store file dialog plugin properties.
*/
-class FileDialogProperties
+struct FileDialogProperties
{
-public:
- /*!
- * Constructor
- */
- FileDialogProperties()
- {
- hasAbout = false;
- modal = true;
- }
- bool hasAbout; /*!< Should be \b true if the file dialog plugin has about dialog,
+ bool hasAbout = false;/*!< Should be \b true if the file dialog plugin has about dialog,
* otherwise should be \b false */
QString name; /*!< File dialog plugin full name */
QString shortName; /*!< File dialog short name for internal usage */
- bool modal; /*!< Should be \b true if the file dialog doesn't support nonmodal mode,
+ bool modal = false; /*!< Should be \b true if the file dialog doesn't support nonmodal mode,
* otherwise should be \b false */
};
/*! @brief File dialog plugin interface.