aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-03-05 19:31:26 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-03-05 19:31:26 +0000
commitc07409a2c6cb205ed46b401efc46b78ab6334405 (patch)
tree5f9f28471576fb3defef63e40ba7a61dd1df197b /src
parent8eb4ba14e9ca714d694cde1347e39409a5020adb (diff)
downloadqmmp-c07409a2c6cb205ed46b401efc46b78ab6334405.tar.gz
qmmp-c07409a2c6cb205ed46b401efc46b78ab6334405.tar.bz2
qmmp-c07409a2c6cb205ed46b401efc46b78ab6334405.zip
fixed api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9268 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/decoderfactory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qmmp/decoderfactory.h b/src/qmmp/decoderfactory.h
index 64e29fb18..a7d8647f1 100644
--- a/src/qmmp/decoderfactory.h
+++ b/src/qmmp/decoderfactory.h
@@ -42,10 +42,10 @@ struct DecoderProperties
QStringList contentTypes; /*!< Supported content types */
QStringList protocols; /*!< A list of supported protocols.
* Should be empty if plugin uses stream input. */
- bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise \b false */
- bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise \b false */
- bool noInput = false; /*!< Should be \b true if plugin has own input, otherwise \b false */
- int priority = 0; /*!< Decoder priority. Decoders with lowest value will be used first */
+ bool hasAbout = false; /*!< Should be \b true if plugin has about dialog, otherwise \b false */
+ bool hasSettings = false; /*!< Should be \b true if plugin has settings dialog, otherwise \b false */
+ bool noInput = false; /*!< Should be \b true if plugin has own input, otherwise \b false */
+ int priority = 0; /*!< Decoder priority. Decoders with lowest value will be used first */
};
/*! @brief Input plugin interface (decoder factory).
* @author Ilya Kotov <forkotov02@ya.ru>