summaryrefslogtreecommitdiff
path: root/solenv/lldb/libreoffice/LO.py
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/lldb/libreoffice/LO.py')
-rw-r--r--solenv/lldb/libreoffice/LO.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/lldb/libreoffice/LO.py b/solenv/lldb/libreoffice/LO.py
index 3c1134ccadc4..31088af2aa32 100644
--- a/solenv/lldb/libreoffice/LO.py
+++ b/solenv/lldb/libreoffice/LO.py
@@ -99,8 +99,8 @@ def sal_unicode_string(buffer_ptr, length):
# Automatically install the above summary functions when this is loaded
def __lldb_init_module(debugger, dict):
debugger.HandleCommand("type summary add --skip-references --python-function LO.rtl_String_summary rtl_String")
- debugger.HandleCommand("type summary add --skip-pointers --skip-references --python-function LO.rtl_OString_summary rtl::OString")
+ debugger.HandleCommand("type summary add --skip-pointers --skip-references --python-function LO.rtl_OString_summary OString")
debugger.HandleCommand("type summary add --skip-references --python-function LO.rtl_uString_summary rtl_uString")
- debugger.HandleCommand("type summary add --skip-pointers --skip-references --python-function LO.rtl_OUString_summary rtl::OUString")
+ debugger.HandleCommand("type summary add --skip-pointers --skip-references --python-function LO.rtl_OUString_summary OUString")
# vim:set shiftwidth=4 softtabstop=4 expandtab: