PluginManager/PluginDetailsDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3145
a9de05d4a22f
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
5 5
6 6
7 """ 7 """
8 Module implementing the Plugin Details Dialog. 8 Module implementing the Plugin Details Dialog.
9 """ 9 """
10
11 from __future__ import unicode_literals # __IGNORE_WARNING__
10 12
11 from PyQt4.QtGui import QDialog 13 from PyQt4.QtGui import QDialog
12 from PyQt4.QtCore import pyqtSlot 14 from PyQt4.QtCore import pyqtSlot
13 15
14 from .Ui_PluginDetailsDialog import Ui_PluginDetailsDialog 16 from .Ui_PluginDetailsDialog import Ui_PluginDetailsDialog
23 Constructor 25 Constructor
24 26
25 @param details dictionary containing the info to be displayed 27 @param details dictionary containing the info to be displayed
26 @param parent parent of this dialog (QWidget) 28 @param parent parent of this dialog (QWidget)
27 """ 29 """
28 super().__init__(parent) 30 super(PluginDetailsDialog, self).__init__(parent)
29 self.setupUi(self) 31 self.setupUi(self)
30 32
31 self.__autoactivate = details["autoactivate"] 33 self.__autoactivate = details["autoactivate"]
32 self.__active = details["active"] 34 self.__active = details["active"]
33 35

eric ide

mercurial