PluginManager/PluginInfoDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2404
cba0ff902c2b
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
5 5
6 6
7 """ 7 """
8 Module implementing the Plugin Info Dialog. 8 Module implementing the Plugin Info Dialog.
9 """ 9 """
10
11 from __future__ import unicode_literals # __IGNORE_WARNING__
10 12
11 from PyQt4.QtCore import pyqtSlot, Qt 13 from PyQt4.QtCore import pyqtSlot, Qt
12 from PyQt4.QtGui import QDialog, QTreeWidgetItem, QHeaderView, QMenu, QBrush 14 from PyQt4.QtGui import QDialog, QTreeWidgetItem, QHeaderView, QMenu, QBrush
13 15
14 from .Ui_PluginInfoDialog import Ui_PluginInfoDialog 16 from .Ui_PluginInfoDialog import Ui_PluginInfoDialog
23 Constructor 25 Constructor
24 26
25 @param pluginManager reference to the plugin manager object 27 @param pluginManager reference to the plugin manager object
26 @param parent parent of this dialog (QWidget) 28 @param parent parent of this dialog (QWidget)
27 """ 29 """
28 super().__init__(parent) 30 super(PluginInfoDialog, self).__init__(parent)
29 self.setupUi(self) 31 self.setupUi(self)
30 32
31 self.pm = pluginManager 33 self.pm = pluginManager
32 34
33 self.__autoActivateColumn = 3 35 self.__autoActivateColumn = 3

eric ide

mercurial