PluginPySide2PyQt.py

changeset 55
f9706d6a2ece
parent 53
52bc3465c1bc
child 58
2c8ec39c1d80
equal deleted inserted replaced
54:dec9442d9fa3 55:f9706d6a2ece
18 # Start-Of-Header 18 # Start-Of-Header
19 name = "PySide to PyQt (and vice versa) Plug-in" 19 name = "PySide to PyQt (and vice versa) Plug-in"
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 20 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
21 autoactivate = True 21 autoactivate = True
22 deactivateable = True 22 deactivateable = True
23 version = "3.1.0" 23 version = "3.1.1"
24 className = "PySide2PyQtPlugin" 24 className = "PySide2PyQtPlugin"
25 packageName = "PySide2PyQt" 25 packageName = "PySide2PyQt"
26 shortDescription = "Convert PySide file to PyQt and vice versa" 26 shortDescription = "Convert PySide file to PyQt and vice versa"
27 longDescription = ( 27 longDescription = (
28 """This plug-in implements a tool to convert a PySide2 file to PyQt5""" 28 """This plug-in implements a tool to convert a PySide2 file to PyQt5"""
43 """ 43 """
44 Constructor 44 Constructor
45 45
46 @param ui reference to the user interface object (UI.UserInterface) 46 @param ui reference to the user interface object (UI.UserInterface)
47 """ 47 """
48 super.__init__(ui) 48 super().__init__(ui)
49 self.__ui = ui 49 self.__ui = ui
50 50
51 self.__translator = None 51 self.__translator = None
52 self.__loadTranslator() 52 self.__loadTranslator()
53 53

eric ide

mercurial