diff options
author | hjk <qtc-committer@nokia.com> | 2010-07-21 14:24:29 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-07-21 14:28:29 +0200 |
commit | 9cbbeec6c15a85eb63119cd8e19e99d0ffc40f35 (patch) | |
tree | 8fd61fe8361ef0cb7469193ee28da1559f45ad21 /src/plugins/debugger/debuggerplugin.h | |
parent | b31a29b18da5805df9d210ee22e3dcf8cd07d641 (diff) | |
download | qt-creator-9cbbeec6c15a85eb63119cd8e19e99d0ffc40f35.tar.gz |
debugger: move convienience function to DebuggerEngine base class
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index 71dab8c888..dac005b51f 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -89,9 +89,6 @@ public: static void startDebugger(ProjectExplorer::RunControl *runControl); static void displayDebugger(ProjectExplorer::RunControl *runControl); - QMessageBox *showMessageBox(int icon, const QString &title, - const QString &text, int buttons = 0); - const CPlusPlus::Snapshot &cppCodeModelSnapshot() const; QIcon locationMarkIcon() const; @@ -118,6 +115,9 @@ signals: void stateChanged(int); private: + QMessageBox *showMessageBox(int icon, const QString &title, + const QString &text, int buttons = 0); + friend class Internal::DebuggerEngine; friend class Internal::DebuggerListener; |