forgot to add an else branch

This commit is contained in:
Peinthor Rene
2013-01-26 10:25:50 +01:00
parent c5dafe9617
commit 13792e8100

View File

@@ -863,7 +863,10 @@ void DBBrowserDB::logSQL(const QString& statement, int msgtype)
logst.append(QObject::tr("... <string too wide to log, probably contains binary data> ..."));
mainWindow->logSql(logst, msgtype);
}
mainWindow->logSql(statement, msgtype);
else
{
mainWindow->logSql(statement, msgtype);
}
}
}