From d2940873a40e7081117ae51cf201667fe2eefb2f Mon Sep 17 00:00:00 2001 From: duplo Date: Mon, 7 Sep 2009 19:06:58 +0000 Subject: [PATCH] Revert wrong commit. The problem with QVariant API needs to be analysed more deeply git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2892 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/qvariant_converter_newer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wizard/qvariant_converter_newer.py b/wizard/qvariant_converter_newer.py index 30317e8f..597d01ce 100644 --- a/wizard/qvariant_converter_newer.py +++ b/wizard/qvariant_converter_newer.py @@ -56,8 +56,8 @@ def convertStringList(string_list): def getStringDict(qvariant): dict_str_str = {} try: - for key, value in qvariant.toMap().items(): - dict_str_str[unicode(key)] = unicode(value.toString()) + for key, value in qvariant.toPyObject().items(): + dict_str_str[unicode(key)] = unicode(value) except: pass return dict_str_str @@ -92,7 +92,7 @@ def convertBoolDict(dict_str_bool): def getDict(qvariant): dict_str_variant = {} try: - for key, value in qvariant.toMap().items(): + for key, value in qvariant.toPyObject().items(): dict_str_variant[unicode(key)] = value except: pass -- 2.25.1