diff options
author | Alessandro Portale <aportale@trolltech.com> | 2009-07-13 17:35:17 +0200 |
---|---|---|
committer | Alessandro Portale <aportale@trolltech.com> | 2009-07-13 17:35:17 +0200 |
commit | d3f9757916d5ba10eac63ef6c42611924999c3b0 (patch) | |
tree | d3da900526161354a6c1ea76f9e66247897977d3 /src/plugins/cpptools/cpptoolsplugin.cpp | |
parent | f9ed6f18bce732a0b440b40cb1cb930d779660ff (diff) | |
download | qt-creator-d3f9757916d5ba10eac63ef6c42611924999c3b0.tar.gz |
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.cpp')
-rw-r--r-- | src/plugins/cpptools/cpptoolsplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp index 7a68c5b576..30858508d4 100644 --- a/src/plugins/cpptools/cpptoolsplugin.cpp +++ b/src/plugins/cpptools/cpptoolsplugin.cpp @@ -198,8 +198,8 @@ CppToolsPlugin::~CppToolsPlugin() bool CppToolsPlugin::initialize(const QStringList &arguments, QString *error) { - Q_UNUSED(arguments); - Q_UNUSED(error); + Q_UNUSED(arguments) + Q_UNUSED(error) Core::ICore *core = Core::ICore::instance(); Core::ActionManager *am = core->actionManager(); |