diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-25 16:10:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-25 16:12:29 +0200 |
commit | 8ae4e64287643b7340e6e35bd16fffeac663e809 (patch) | |
tree | baacd0b2bd06bb6698b8684c342262448e404220 /solenv/lldb | |
parent | 87239dbf7d57d812cdecbf75f6e86afaa4864abb (diff) |
fix gdb pretty printing
revert part of
commit 6f50961e69406a17d6ec998956a6b33208b1001b
remove more rtl::OUString and OString prefixes
Change-Id: I026f8175c855a20bab54940f6235bca5c91ddbab
Diffstat (limited to 'solenv/lldb')
-rw-r--r-- | solenv/lldb/libreoffice/LO.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/lldb/libreoffice/LO.py b/solenv/lldb/libreoffice/LO.py index 31088af2aa32..3c1134ccadc4 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 OString") + debugger.HandleCommand("type summary add --skip-pointers --skip-references --python-function LO.rtl_OString_summary rtl::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 OUString") + debugger.HandleCommand("type summary add --skip-pointers --skip-references --python-function LO.rtl_OUString_summary rtl::OUString") # vim:set shiftwidth=4 softtabstop=4 expandtab: |