From df107ca905d497a3a44946a3653bf8f3056e7dbe Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Wed, 21 Jul 2010 14:15:10 +0200
Subject: [PATCH] debugger: remove unneeded DebuggerPlugin::state() fucntion

---
 src/plugins/debugger/debuggerplugin.cpp | 12 ++++--------
 src/plugins/debugger/debuggerplugin.h   |  1 -
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index e4550c6f2e1..197d464b502 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -2672,11 +2672,6 @@ void DebuggerPlugin::exitDebugger()
     d->exitDebugger();
 }
 
-int DebuggerPlugin::state() const
-{
-    return d->state();
-}
-
 void DebuggerPlugin::createNewDock(QWidget *widget)
 {
     QDockWidget *dockWidget =
@@ -2717,7 +2712,7 @@ bool DebuggerPlugin::coreAboutToClose()
     // FIXME: Iterate over all running debuggers.
     // Ask to terminate the session.
     bool cleanTermination = false;
-    switch (state()) {
+    switch (d->state()) {
     case DebuggerNotReady:
     case DebuggerFinished:
     case InferiorUnrunnable:
@@ -2753,11 +2748,12 @@ bool DebuggerPlugin::coreAboutToClose()
            "Terminating the session in the current"
            " state (%1) can leave the target in an inconsistent state."
            " Would you still like to terminate it?")
-        .arg(_(DebuggerEngine::stateName(state())));
+        .arg(_(DebuggerEngine::stateName(d->state())));
 
     const QString title
             = QCoreApplication::translate("Debugger::Internal::DebuggerListener",
-                                          "Close Debugging Session");                                                          QMessageBox::StandardButton answer =
+                                          "Close Debugging Session");
+    QMessageBox::StandardButton answer =
         QMessageBox::question(DebuggerUISwitcher::instance()->mainWindow(),
             title, question,
             QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes);
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h
index 750e293e1c0..6eeeea5296d 100644
--- a/src/plugins/debugger/debuggerplugin.h
+++ b/src/plugins/debugger/debuggerplugin.h
@@ -95,7 +95,6 @@ public:
     const CPlusPlus::Snapshot &cppCodeModelSnapshot() const;
 
     QIcon locationMarkIcon() const;
-    int state() const;  // Last reported state of last active engine.
     bool isReverseDebugging() const;
     void createNewDock(QWidget *widget);
     void runControlStarted(DebuggerRunControl *runControl);
-- 
GitLab