diff options
author | Alessandro Portale <[email protected]> | 2009-07-13 17:35:17 +0200 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2009-07-13 17:35:17 +0200 |
commit | d3f9757916d5ba10eac63ef6c42611924999c3b0 (patch) | |
tree | d3da900526161354a6c1ea76f9e66247897977d3 /src/plugins/qtestlib/qtestlibplugin.cpp | |
parent | f9ed6f18bce732a0b440b40cb1cb930d779660ff (diff) |
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
Diffstat (limited to 'src/plugins/qtestlib/qtestlibplugin.cpp')
-rw-r--r-- | src/plugins/qtestlib/qtestlibplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qtestlib/qtestlibplugin.cpp b/src/plugins/qtestlib/qtestlibplugin.cpp index 315b36537e1..8fa5072b030 100644 --- a/src/plugins/qtestlib/qtestlibplugin.cpp +++ b/src/plugins/qtestlib/qtestlibplugin.cpp @@ -125,8 +125,8 @@ QTestLibPlugin::~QTestLibPlugin() bool QTestLibPlugin::init(const QStringList &arguments, QString *errorMessage) { - Q_UNUSED(arguments); - Q_UNUSED(errorMessage); + Q_UNUSED(arguments) + Q_UNUSED(errorMessage) m_projectExplorer = ProjectExplorer::ProjectExplorerPlugin::instance(); connect(m_projectExplorer, SIGNAL(aboutToExecuteProject(ProjectExplorer::Project *)), this, SLOT(projectRunHook(ProjectExplorer::Project *))); |