Don't add quotes to string representation in gdb.

gdb adds quotes itself around string values so don't duplicate them.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2010-10-22 14:17:22 +00:00
parent 53dfbfa5c9
commit 9513aa80ce

View File

@ -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'