]> git.saurik.com Git - wxWidgets.git/blobdiff - misc/gdb/print.py
Mention the relationship of wxDocument::Activate() with Raise().
[wxWidgets.git] / misc / gdb / print.py
index 26186867aafcd19e59c60436a9601fec29fa3599..40084758e3daa5544ee1f65b09c3ad1fcab781cc 100755 (executable)
@@ -22,7 +22,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']
 
     def display_hint(self):
         return 'string'
@@ -36,6 +36,8 @@ class wxDateTimePrinter:
         # expressions directly so we need to convert it to long long first and
         # then cast to int explicitly to be able to use it as a timestamp.
         msec = self.val['m_time'].cast(gdb.lookup_type('long long'))
+        if msec == 0x8000000000000000:
+            return 'NONE'
         sec = int(msec / 1000)
         return datetime.datetime.fromtimestamp(sec).isoformat(' ')