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/debugger/tcf | |
parent | f9ed6f18bce732a0b440b40cb1cb930d779660ff (diff) |
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
Diffstat (limited to 'src/plugins/debugger/tcf')
-rw-r--r-- | src/plugins/debugger/tcf/tcfengine.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/debugger/tcf/tcfengine.cpp b/src/plugins/debugger/tcf/tcfengine.cpp index b699f40954a..8e5b21e0ddf 100644 --- a/src/plugins/debugger/tcf/tcfengine.cpp +++ b/src/plugins/debugger/tcf/tcfengine.cpp @@ -273,32 +273,32 @@ void TcfEngine::nextIExec() void TcfEngine::runToLineExec(const QString &fileName, int lineNumber) { - Q_UNUSED(fileName); - Q_UNUSED(lineNumber); + Q_UNUSED(fileName) + Q_UNUSED(lineNumber) SDEBUG("FIXME: TcfEngine::runToLineExec()"); } void TcfEngine::runToFunctionExec(const QString &functionName) { - Q_UNUSED(functionName); + Q_UNUSED(functionName) XSDEBUG("FIXME: TcfEngine::runToFunctionExec()"); } void TcfEngine::jumpToLineExec(const QString &fileName, int lineNumber) { - Q_UNUSED(fileName); - Q_UNUSED(lineNumber); + Q_UNUSED(fileName) + Q_UNUSED(lineNumber) XSDEBUG("FIXME: TcfEngine::jumpToLineExec()"); } void TcfEngine::activateFrame(int index) { - Q_UNUSED(index); + Q_UNUSED(index) } void TcfEngine::selectThread(int index) { - Q_UNUSED(index); + Q_UNUSED(index) } void TcfEngine::attemptBreakpointSynchronization() @@ -311,7 +311,7 @@ void TcfEngine::reloadDisassembler() void TcfEngine::loadSymbols(const QString &moduleName) { - Q_UNUSED(moduleName); + Q_UNUSED(moduleName) } void TcfEngine::loadAllSymbols() @@ -498,7 +498,7 @@ void TcfEngine::sendCommandNow(const TcfCommand &cmd) { ++m_inAir; int result = m_socket->write(cmd.command); - Q_UNUSED(result); + Q_UNUSED(result) m_socket->flush(); emit tcfInputAvailable(LogInput, QString::number(cmd.token) + " " + cmd.toString()); SDEBUG("SEND " << cmd.toString()); //<< " " << QString::number(result)); @@ -572,7 +572,7 @@ void TcfEngine::updateWatchData(const WatchData &) void TcfEngine::updateSubItem(const WatchData &data0) { - Q_UNUSED(data0); + Q_UNUSED(data0) QTC_ASSERT(false, return); } |