Fixes: debugger: work on breakpoints in plugins

This commit is contained in:
hjk
2009-02-12 13:31:19 +01:00
parent 308edee44c
commit dee68a29c1
5 changed files with 36 additions and 141 deletions

View File

@@ -561,7 +561,7 @@ void DebuggerManager::notifyInferiorUpdateFinished()
void DebuggerManager::notifyInferiorRunningRequested()
{
setStatus(DebuggerInferiorRunningRequested);
showStatusMessage(tr("Running..."), 5000);
showStatusMessage(tr("Running requested..."), 5000);
}
void DebuggerManager::notifyInferiorRunning()
@@ -579,7 +579,7 @@ void DebuggerManager::notifyInferiorExited()
void DebuggerManager::notifyInferiorPidChanged(int pid)
{
//QMessageBox::warning(0, "PID", "PID: " + QString::number(pid));
//qDebug() << "PID: " << pid;
qDebug() << "PID: " << pid;
emit inferiorPidChanged(pid);
}