aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2012-08-14 09:45:40 +0200
committerhjk <[email protected]>2012-08-14 09:47:06 +0200
commit63fbe5ffe0bfb8cf1b9affd53e584aac105e42e5 (patch)
tree45162acb04a4c4b7f62127200a94f7499fa4b65b /src/plugins/debugger/debuggerplugin.cpp
parent379e4ed3c7f0d97799b442cdb395251218884395 (diff)
debugger: remove explicit lldb option
It's currently non-functional and if revived in the future it should blend into the new target based options. Change-Id: I87988611496c232523acea973160be846d47a3dc Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index aa359b9fb77..43b4841a407 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -1120,7 +1120,6 @@ public:
QAction *m_attachToQmlPortAction;
QAction *m_attachToRemoteServerAction;
QAction *m_startRemoteCdbAction;
- QAction *m_startRemoteLldbAction;
QAction *m_attachToCoreAction;
QAction *m_detachAction;
QAction *m_continueAction;
@@ -1241,7 +1240,6 @@ DebuggerPluginPrivate::DebuggerPluginPrivate(DebuggerPlugin *plugin) :
m_attachToRunningApplication = 0;
m_attachToQmlPortAction = 0;
m_startRemoteCdbAction = 0;
- m_startRemoteLldbAction = 0;
m_attachToCoreAction = 0;
m_detachAction = 0;
@@ -2913,12 +2911,6 @@ void DebuggerPluginPrivate::extensionsInitialized()
act->setText(tr("Start and Debug Application..."));
connect(act, SIGNAL(triggered()), SLOT(startAndDebugApplication()));
-#ifdef WITH_LLDB
- act = m_startRemoteLldbAction = new QAction(this);
- act->setText(tr("Start and Debug External Application with External Engine..."));
- connect(act, SIGNAL(triggered()), SLOT(startRemoteEngine()));
-#endif
-
act = m_attachToCoreAction = new QAction(this);
act->setText(tr("Load Core File..."));
connect(act, SIGNAL(triggered()), SLOT(attachCore()));
@@ -3008,13 +3000,6 @@ void DebuggerPluginPrivate::extensionsInitialized()
cmd->setDescription(tr("Start Gdbserver"));
mstart->addAction(cmd, Constants::G_MANUAL_REMOTE);
-#ifdef WITH_LLDB
- cmd = ActionManager::registerAction(m_startRemoteLldbAction,
- "Debugger.RemoteLldb", globalcontext);
- cmd->setAttribute(Command::CA_Hide);
- mstart->addAction(cmd, Constants::G_MANUAL_REMOTE);
-#endif
-
if (m_startRemoteCdbAction) {
cmd = ActionManager::registerAction(m_startRemoteCdbAction,
"Debugger.AttachRemoteCdb", globalcontext);