23 Constructor |
23 Constructor |
24 |
24 |
25 @param pluginManager reference to the plugin manager object |
25 @param pluginManager reference to the plugin manager object |
26 @param parent parent of this dialog (QWidget) |
26 @param parent parent of this dialog (QWidget) |
27 """ |
27 """ |
28 super(PluginInfoDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 self.setWindowFlags(Qt.WindowType.Window) |
30 self.setWindowFlags(Qt.WindowType.Window) |
31 |
31 |
32 self.pm = pluginManager |
32 self.pm = pluginManager |
33 |
33 |