diff options
| -rw-r--r-- | src/qmmp/effectfactory.h | 4 | ||||
| -rw-r--r-- | src/qmmp/enginefactory.h | 4 | ||||
| -rw-r--r-- | src/qmmp/outputfactory.h | 4 | ||||
| -rw-r--r-- | src/qmmp/visualfactory.h | 4 | ||||
| -rw-r--r-- | src/qmmpui/generalfactory.h | 6 |
5 files changed, 11 insertions, 11 deletions
diff --git a/src/qmmp/effectfactory.h b/src/qmmp/effectfactory.h index 2c7400f58..374f42328 100644 --- a/src/qmmp/effectfactory.h +++ b/src/qmmp/effectfactory.h @@ -44,8 +44,8 @@ struct EffectProperties QString name; /*!< Effect plugin full name */ QString shortName; /*!< Effect plugin short name for internal usage */ - bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise returns \b false */ - bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise returns \b false */ + bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, and \b false otherwise */ + bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog,and \b false otherwise */ int priority = EFFECT_PRIORITY_DEFAULT; /*!< Effect priority. Effecs with higher priority will be applied first */ }; diff --git a/src/qmmp/enginefactory.h b/src/qmmp/enginefactory.h index 9c4fdd832..80184b251 100644 --- a/src/qmmp/enginefactory.h +++ b/src/qmmp/enginefactory.h @@ -44,8 +44,8 @@ struct EngineProperties QString description; /*!< File filter description */ QStringList contentTypes; /*!< Supported content types */ QStringList protocols; /*!< Supported protocols. Should be empty if plugin uses stream input. */ - bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise returns \b false */ - bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise returns \b false */ + bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, and \b false otherwise */ + bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, and \b false otherwise */ }; /*! @brief Engine plugin interface. diff --git a/src/qmmp/outputfactory.h b/src/qmmp/outputfactory.h index 12185d5ba..5f118da88 100644 --- a/src/qmmp/outputfactory.h +++ b/src/qmmp/outputfactory.h @@ -38,8 +38,8 @@ struct OutputProperties { QString name; /*!< Effect plugin full name */ QString shortName; /*!< Effect plugin short name for internal usage */ - bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise returns \b false */ - bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise returns \b false */ + bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, and \b false otherwise */ + bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, and \b false otherwise */ }; /*! @brief %Output plugin interface (output factory). * @author Ilya Kotov <forkotov02@ya.ru> diff --git a/src/qmmp/visualfactory.h b/src/qmmp/visualfactory.h index 780da9470..4130b3554 100644 --- a/src/qmmp/visualfactory.h +++ b/src/qmmp/visualfactory.h @@ -36,8 +36,8 @@ struct VisualProperties { QString name; /*!< Effect plugin full name */ QString shortName; /*!< Effect plugin short name for internal usage */ - bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise returns \b false */ - bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise returns \b false */ + bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, and \b false otherwise */ + bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, and \b false otherwise */ }; /*! @brief %Visual plugin interface (visual factory). * @author Ilya Kotov <forkotov02@ya.ru> diff --git a/src/qmmpui/generalfactory.h b/src/qmmpui/generalfactory.h index 44df52016..63a8a80fc 100644 --- a/src/qmmpui/generalfactory.h +++ b/src/qmmpui/generalfactory.h @@ -35,10 +35,10 @@ struct GeneralProperties { 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 */ - bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise returns \b false */ + bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, and \b false otherwise */ + bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, and \b false otherwise */ bool visibilityControl = false; /*!< Should be \b true if plugin can show/hide main window of the player, - * otherwise returns \b false */ + * and \b false otherwise */ }; /*! @brief %General plugin interface. * @author Ilya Kotov <forkotov02@ya.ru> |
