fix a few krazy warnings

This commit is contained in:
hjk
2011-02-23 15:28:39 +01:00
parent 2e59bc9a66
commit 7a35865c50
3 changed files with 6 additions and 6 deletions

View File

@@ -120,7 +120,7 @@ void PdbEngine::postDirectCommand(const QByteArray &command)
{
QTC_ASSERT(m_pdbProc.state() == QProcess::Running, notifyEngineIll());
showMessage(_(command), LogInput);
m_pdbProc.write(command + "\n");
m_pdbProc.write(command + '\n');
}
void PdbEngine::postCommand(const QByteArray &command,
@@ -138,7 +138,7 @@ void PdbEngine::postCommand(const QByteArray &command,
m_commands.enqueue(cmd);
qDebug() << "ENQUEUE: " << command << cmd.callbackName;
showMessage(_(cmd.command), LogInput);
m_pdbProc.write(cmd.command + "\n");
m_pdbProc.write(cmd.command + '\n');
}
void PdbEngine::shutdownInferior()