Removing some unused semicolons after Q_UNUSED

There were both variants, with and without extra semicolon.
This commit is contained in:
Alessandro Portale
2009-07-13 17:35:17 +02:00
parent f9ed6f18bc
commit d3f9757916
81 changed files with 298 additions and 298 deletions

View File

@@ -352,7 +352,7 @@ void GdbEngine::readUploadStandardError()
static void dump(const char *first, const char *middle, const QString & to)
{
QByteArray ba(first, middle - first);
Q_UNUSED(to);
Q_UNUSED(to)
// note that qDebug cuts off output after a certain size... (bug?)
qDebug("\n>>>>> %s\n%s\n====\n%s\n<<<<<\n",
qPrintable(currentTime()),
@@ -1641,7 +1641,7 @@ void GdbEngine::continueInferior()
void GdbEngine::handleStart(const GdbResultRecord &response, const QVariant &)
{
#if defined(Q_OS_MAC)
Q_UNUSED(response);
Q_UNUSED(response)
#else
if (response.resultClass == GdbResultDone) {
// [some leading stdout here]
@@ -2689,7 +2689,7 @@ static QString tooltipINameForExpression(const QString &exp)
{
// FIXME: 'exp' can contain illegal characters
//return QLatin1String("tooltip.") + exp;
Q_UNUSED(exp);
Q_UNUSED(exp)
return QLatin1String("tooltip.x");
}
@@ -2865,7 +2865,7 @@ void GdbEngine::setUseDebuggingHelpers(const QVariant &on)
//qDebug() << "SWITCHING ON/OFF DUMPER DEBUGGING:" << on;
// FIXME: a bit too harsh, but otherwise the treeview sometimes look funny
//m_expandedINames.clear();
Q_UNUSED(on);
Q_UNUSED(on)
setTokenBarrier();
updateLocals();
}
@@ -2899,7 +2899,7 @@ static inline QString msgRetrievingWatchData(int pending)
void GdbEngine::runDirectDebuggingHelper(const WatchData &data, bool dumpChildren)
{
Q_UNUSED(dumpChildren);
Q_UNUSED(dumpChildren)
QString type = data.type;
QString cmd;