debugger: fix timeout message.

This commit is contained in:
hjk
2010-01-12 13:51:46 +01:00
parent 40e4837d63
commit 9ee71d7da9

View File

@@ -855,7 +855,7 @@ void GdbEngine::commandTimeout()
"to a command within %1 seconds. This may been it is stuck "
"in an endless loop or taking longer than expected to perform "
"the operation it was reqested.\nYou have a choice of waiting "
"longer or abort debugging.").arg(timeOut);
"longer or abort debugging.").arg(timeOut / 1000);
QMessageBox *mb = showMessageBox(QMessageBox::Critical,
tr("Gdb not responding"), msg,
QMessageBox::Ok | QMessageBox::Cancel);