X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6df26ddbf7eb563e66bee2313e71d1c0241b351a..1680c3561bc4f44c63a026e0d1a5324a39336156:/misc/gdb/print.py diff --git a/misc/gdb/print.py b/misc/gdb/print.py index 449edba1ea..703c9c6a68 100755 --- a/misc/gdb/print.py +++ b/misc/gdb/print.py @@ -5,9 +5,9 @@ # in the future...) # Author: Vadim Zeitlin # Created: 2009-01-04 -# RCS-Id: $Id:$ +# RCS-Id: $Id$ # Copyright: (c) 2009 Vadim Zeitlin -# License: wxWindows licence +# Licence: wxWindows licence ############################################################################### # Define wxFooPrinter class implementing (at least) to_string() method for each @@ -21,7 +21,7 @@ class wxStringPrinter: self.val = val def to_string(self): - return '"' + self.val['m_impl']['_M_dataplus']['_M_p'].string() + '"' + return self.val['m_impl']['_M_dataplus']['_M_p'].string() def display_hint(self): return 'string'