diff options
Diffstat (limited to 'src/qmmpui/commandlinemanager.cpp')
| -rw-r--r-- | src/qmmpui/commandlinemanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qmmpui/commandlinemanager.cpp b/src/qmmpui/commandlinemanager.cpp index e6b23ac4c..82c8d7861 100644 --- a/src/qmmpui/commandlinemanager.cpp +++ b/src/qmmpui/commandlinemanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Ilya Kotov * + * Copyright (C) 2008-2010 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -79,14 +79,14 @@ CommandLineManager::~CommandLineManager() { } -void CommandLineManager::executeCommand(const QString& opt_str) +void CommandLineManager::executeCommand(const QString& opt_str, const QStringList &args) { checkOptions(); foreach(CommandLineOption *opt, *m_options) { if (opt->identify(opt_str)) { - opt->executeCommand(opt_str, this); + opt->executeCommand(opt_str, args); return; } } |
