PluginManager/PluginRepositoryDialog.py

changeset 6600
092cb8a3fc34
parent 6599
419f36a46608
child 6608
954711fa91d8
equal deleted inserted replaced
6599:419f36a46608 6600:092cb8a3fc34
62 PluginStatusUpToDate = 0 62 PluginStatusUpToDate = 0
63 PluginStatusNew = 1 63 PluginStatusNew = 1
64 PluginStatusLocalUpdate = 2 64 PluginStatusLocalUpdate = 2
65 PluginStatusRemoteUpdate = 3 65 PluginStatusRemoteUpdate = 3
66 66
67 def __init__(self, pluginManager, parent=None):#, external=False): 67 def __init__(self, pluginManager, parent=None):
68 """ 68 """
69 Constructor 69 Constructor
70 70
71 @param pluginManager reference to the plugin manager object 71 @param pluginManager reference to the plugin manager object
72 @type PluginManager 72 @type PluginManager
73 @param parent parent of this dialog 73 @param parent parent of this dialog
74 @type QWidget 74 @type QWidget
75 @param external flag indicating an instantiation as a main
76 window
77 @type bool
78 """ 75 """
79 super(PluginRepositoryWidget, self).__init__(parent) 76 super(PluginRepositoryWidget, self).__init__(parent)
80 self.setupUi(self) 77 self.setupUi(self)
81 78
82 if pluginManager is None: 79 if pluginManager is None:

eric ide

mercurial