Fix Qt5 QUrl dumper

Change-Id: I5da72aebe30a3f7030b44566561fca25ce867c0a
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Eike Ziller
2013-10-18 10:52:53 +02:00
committed by hjk
parent fc52b30450
commit 515a958083
3 changed files with 33 additions and 8 deletions
+6
View File
@@ -1422,6 +1422,12 @@ class Dumper(DumperBase):
self.putType("bool")
self.putNumChild(0)
def putGenericItem(self, name, type, value, encoding = None):
with SubItem(self, name):
self.putValue(value, encoding)
self.putType(type)
self.putNumChild(0)
def currentItemFormat(self):
format = self.formats.get(self.currentIName)
if format is None: