Debugger: Remove last traces of Dumper.is32bit()

Change-Id: Icb3b3bd472361816965b60b9f3cd0771aa4b99fe
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2016-09-14 14:44:58 +02:00
committed by hjk
parent dfbb0b64b9
commit e1ff0a1823
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -488,9 +488,6 @@ class DumperBase:
s = s.encode("utf8")
return base64.b16encode(s).decode("utf8")
def is32bit(self):
return self.ptrSize() == 4
def isQt3Support(self):
# assume no Qt 3 support by default
return False
+1 -1
View File
@@ -572,7 +572,7 @@ class Dumper(DumperBase):
# due to misaligned %ebx in SSE calls (qstring.cpp:findChar)
# This seems to be fixed in 7.9 (or earlier)
def canCallLocale(self):
return False if self.is32bit() else True
return self.ptrSize() == 8
def fetchVariables(self, args):
self.resetStats()