diff options
author | Friedemann Kleint <[email protected]> | 2009-03-04 16:48:13 +0100 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2009-03-04 16:48:13 +0100 |
commit | 58c4cd8b27e23bebe290084a1f45493ed609356b (patch) | |
tree | 0b1e02c1410ba812ada58bd337998a310cf4841d /src/plugins/debugger/debuggerdialogs.h | |
parent | 86b6c44e4e35c8a4754b28b5dbbe1bbd49d4e167 (diff) |
Fixes: Make Attach External Dialog play nicely (exclude self)
Details: MinGW compilation
Diffstat (limited to 'src/plugins/debugger/debuggerdialogs.h')
-rw-r--r-- | src/plugins/debugger/debuggerdialogs.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerdialogs.h b/src/plugins/debugger/debuggerdialogs.h index 621b978df91..1e11c356f7d 100644 --- a/src/plugins/debugger/debuggerdialogs.h +++ b/src/plugins/debugger/debuggerdialogs.h @@ -37,6 +37,7 @@ QT_BEGIN_NAMESPACE class QModelIndex; class QStandardItemModel; class QSortFilterProxyModel; +class QPushButton; namespace Ui { class AttachCoreDialog; @@ -90,11 +91,15 @@ public: private slots: void rebuildProcessList(); void procSelected(const QModelIndex &); + void pidChanged(const QString &); private: + inline QPushButton *okButton() const; + const QString m_selfPid; + Ui::AttachExternalDialog *m_ui; - QSortFilterProxyModel *m_proxyModel; QStandardItemModel *m_model; + QSortFilterProxyModel *m_proxyModel; }; |