summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBDebugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r--lldb/source/API/SBDebugger.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp
index 73f125bcb8a..fe2b99a2dc2 100644
--- a/lldb/source/API/SBDebugger.cpp
+++ b/lldb/source/API/SBDebugger.cpp
@@ -563,3 +563,23 @@ SBDebugger::FindDebuggerWithID (int id)
sb_debugger.reset (debugger_sp);
return sb_debugger;
}
+
+bool
+SBDebugger::SetUseExternalEditor (bool value)
+{
+ if (m_opaque_sp)
+ return m_opaque_sp->SetUseExternalEditor (value);
+ else
+ return false;
+}
+
+bool
+SBDebugger::UseExternalEditor ()
+{
+ if (m_opaque_sp)
+ return m_opaque_sp->UseExternalEditor ();
+ else
+ return false;
+}
+
+
OpenPOWER on IntegriCloud