Debugger: Improve engine detection.

Try to detect engine by looking at toolchain, executable,
attach mode. Find out path to executable in attach to running
dialog.

Reviewed-by: hjk
This commit is contained in:
Friedemann Kleint
2010-03-17 10:57:19 +01:00
parent 3e750afc73
commit 0146926f19
6 changed files with 99 additions and 47 deletions

View File

@@ -89,6 +89,7 @@ public:
~AttachExternalDialog();
qint64 attachPID() const;
QString executable() const;
private slots:
void rebuildProcessList();
@@ -99,8 +100,9 @@ private slots:
private:
inline QPushButton *okButton() const;
const QString m_selfPid;
inline QString attachPIDText() const;
const QString m_selfPid;
Ui::AttachExternalDialog *m_ui;
ProcessListFilterModel *m_model;
};