aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-03-05 19:30:32 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-03-05 19:30:32 +0000
commit8eb4ba14e9ca714d694cde1347e39409a5020adb (patch)
tree2f21319efe01f8268b9292567567df311ddc3902 /src
parent6cd197c342e2bfbe822e0b405694858478ceeeb8 (diff)
downloadqmmp-8eb4ba14e9ca714d694cde1347e39409a5020adb.tar.gz
qmmp-8eb4ba14e9ca714d694cde1347e39409a5020adb.tar.bz2
qmmp-8eb4ba14e9ca714d694cde1347e39409a5020adb.zip
fixed api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9267 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/effectfactory.h4
-rw-r--r--src/qmmp/enginefactory.h4
-rw-r--r--src/qmmp/outputfactory.h4
-rw-r--r--src/qmmp/visualfactory.h4
-rw-r--r--src/qmmpui/generalfactory.h6
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>