2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the About plugin. | 7 Module implementing the About plugin. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import QObject | 12 from PyQt4.QtCore import QObject |
11 from PyQt4.QtGui import QAction | 13 from PyQt4.QtGui import QAction |
12 | 14 |
13 import UI.Info | 15 import UI.Info |
40 """ | 42 """ |
41 Constructor | 43 Constructor |
42 | 44 |
43 @param ui reference to the user interface object (UI.UserInterface) | 45 @param ui reference to the user interface object (UI.UserInterface) |
44 """ | 46 """ |
45 super().__init__(ui) | 47 super(AboutPlugin, self).__init__(ui) |
46 self.__ui = ui | 48 self.__ui = ui |
47 | 49 |
48 def activate(self): | 50 def activate(self): |
49 """ | 51 """ |
50 Public method to activate this plugin. | 52 Public method to activate this plugin. |