aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/commandlinehandler.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-03-08 16:58:27 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-03-08 16:58:27 +0000
commit567b27e47befd4978c736851f900014c827d5ca2 (patch)
tree1a8b7a72c6355bb07865d5c770631a43d0f31182 /src/qmmpui/commandlinehandler.cpp
parente0c3dcb6f20ba542bcae375176ae02205591e692 (diff)
downloadqmmp-567b27e47befd4978c736851f900014c827d5ca2.tar.gz
qmmp-567b27e47befd4978c736851f900014c827d5ca2.tar.bz2
qmmp-567b27e47befd4978c736851f900014c827d5ca2.zip
fixed coding style
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8745 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/commandlinehandler.cpp')
-rw-r--r--src/qmmpui/commandlinehandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmpui/commandlinehandler.cpp b/src/qmmpui/commandlinehandler.cpp
index e8a5e81da..85263e16c 100644
--- a/src/qmmpui/commandlinehandler.cpp
+++ b/src/qmmpui/commandlinehandler.cpp
@@ -25,7 +25,7 @@ QStringList CommandLineHandler::helpString() const
QStringList out;
foreach (const CommandLineOption &opt, m_options.values())
{
- if(opt.flags & HIDDEN_FROM_HELP)
+ if(opt.flags & HiddenFromHelp)
continue;
else if(opt.values.isEmpty())
out << opt.names.join(", ") + "||" + opt.helpString;