X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fqvariant_converter.py;h=85fec2c0f21b7fcb0c36c782b0789b1b8f456068;hb=39e200e1f43474a96888f97e2271728c9605ccbe;hp=81181965121f979cc457a930f06e344c94e6d2ea;hpb=f4587e9bcc6bbb6398e56c29f411df2f2a88b5d7;p=bertos.git diff --git a/wizard/qvariant_converter.py b/wizard/qvariant_converter.py index 81181965..85fec2c0 100644 --- a/wizard/qvariant_converter.py +++ b/wizard/qvariant_converter.py @@ -28,16 +28,20 @@ # # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # -# $Id$ # # Author: Lorenzo Berni # from PyQt4.QtCore import PYQT_VERSION_STR +# Choose the right version of the qvariant_converter module. It's awful, +# I know, but this is the only solution in order to mantain compatibility +# with older PyQt4 version. if PYQT_VERSION_STR <= "4.4.3": from qvariant_converter_old import * -elif PYQT_VERSION_STR < "4.5.0": - from qvariant_converter_new import * +elif "4.4.3" < PYQT_VERSION_STR < "4.5": + from qvariant_converter_4_4 import * +elif "4.5" <= PYQT_VERSION_STR < "4.6": + from qvariant_converter_4_5 import * else: - from qvariant_converter_newer import * + from qvariant_converter_4_6 import *