aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-12-15 20:27:30 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-12-15 20:27:30 +0000
commit660f7c64c2f6e1c8ca86c24f5075d5ce46a68866 (patch)
tree91f0881445310268cf868f5b55e088c1a1aec614 /src/qmmpui
parent51d1d6b83ebe4c235b23aeea78ae4f3ace12acfd (diff)
downloadqmmp-660f7c64c2f6e1c8ca86c24f5075d5ce46a68866.tar.gz
qmmp-660f7c64c2f6e1c8ca86c24f5075d5ce46a68866.tar.bz2
qmmp-660f7c64c2f6e1c8ca86c24f5075d5ce46a68866.zip
fixed build warning
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9141 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui')
-rw-r--r--src/qmmpui/commandlinemanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmpui/commandlinemanager.cpp b/src/qmmpui/commandlinemanager.cpp
index 684231144..66b897f7b 100644
--- a/src/qmmpui/commandlinemanager.cpp
+++ b/src/qmmpui/commandlinemanager.cpp
@@ -99,7 +99,7 @@ bool CommandLineManager::hasOption(const QString &opt_str, CommandLineHandler::O
{
checkOptions();
if(flags)
- *flags = nullptr;
+ *flags = CommandLineHandler::OptionFlags();
for(const CommandLineHandler *opt : qAsConst(*m_options))
{
int id = opt->identify(opt_str);