forked from qt-creator/qt-creator
fixes to translatable strings
Merge-request: 322 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
committed by
Oswald Buddenhagen
parent
12b2a5fff0
commit
c3fa2d35a0
@@ -871,10 +871,10 @@ void GdbEngine::commandTimeout()
|
||||
int timeOut = m_commandTimer.interval();
|
||||
//m_commandTimer.stop();
|
||||
const QString msg = tr("The gdb process has not responded "
|
||||
"to a command within %1 seconds. This could mean it is stuck "
|
||||
"to a command within %n second(s). This could mean it is stuck "
|
||||
"in an endless loop or taking longer than expected to perform "
|
||||
"the operation.\nYou can choose between waiting "
|
||||
"longer or abort debugging.").arg(timeOut / 1000);
|
||||
"longer or abort debugging.", 0, timeOut / 1000);
|
||||
QMessageBox *mb = showMessageBox(QMessageBox::Critical,
|
||||
tr("GDB not responding"), msg,
|
||||
QMessageBox::Ok | QMessageBox::Cancel);
|
||||
|
||||
Reference in New Issue
Block a user