Plugins/PluginVmTabview.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 2791
a9577f248f04
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Tabview view manager plugin. 7 Module implementing the Tabview view manager plugin.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os 12 import os
11 13
12 from PyQt4.QtCore import QT_TRANSLATE_NOOP, QObject 14 from PyQt4.QtCore import QT_TRANSLATE_NOOP, QObject
13 from PyQt4.QtGui import QPixmap 15 from PyQt4.QtGui import QPixmap
50 """ 52 """
51 Constructor 53 Constructor
52 54
53 @param ui reference to the user interface object (UI.UserInterface) 55 @param ui reference to the user interface object (UI.UserInterface)
54 """ 56 """
55 super().__init__(ui) 57 super(VmTabviewPlugin, self).__init__(ui)
56 self.__ui = ui 58 self.__ui = ui
57 59
58 def activate(self): 60 def activate(self):
59 """ 61 """
60 Public method to activate this plugin. 62 Public method to activate this plugin.

eric ide

mercurial