diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2018-03-30 15:22:54 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2018-04-04 14:15:41 +0200 |
commit | 3615931a8faf27befa7c0df3e27b68dbd184bda6 (patch) | |
tree | 489f5a9ce0178a68c76428c5e0e85fcf1c74e27e /solenv | |
parent | d940d478be430ea59956dacc42df1f4fd2126506 (diff) |
Fix SfxItemSet pretty printer after some uniqueptr conversions
just whyyyyyyy are you people doing this, why do you gratuitously
break things others rely upon for productivity?!?? I don't give
a F about uniqueptrs, all I want is to be able to print this bloody
SfxItemSet. It's frustrating AF
Change-Id: I0b6110c1806c31a3c098fb9dc73883047191c7f9
Reviewed-on: https://gerrit.libreoffice.org/52362
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gdb/libreoffice/svl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/libreoffice/svl.py b/solenv/gdb/libreoffice/svl.py index 05049652c434..99a0fad70092 100644 --- a/solenv/gdb/libreoffice/svl.py +++ b/solenv/gdb/libreoffice/svl.py @@ -40,7 +40,7 @@ class ItemSetPrinter(object): for (whichfrom, whichto) in whichranges: size += whichto - whichfrom + 1 whichids += [which for which in range(whichfrom, whichto+1)] - return self._iterator(self.value['m_pItems'], size, whichids) + return self._iterator(self.value['m_pItems']['_M_t']['_M_t']['_M_head_impl'], size, whichids) class _iterator(six.Iterator): |