2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the bookmarks extension project helper. | 7 Module implementing the bookmarks extension project helper. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtGui import QMenu | 12 from PyQt4.QtGui import QMenu |
11 | 13 |
12 from E5Gui.E5Action import E5Action | 14 from E5Gui.E5Action import E5Action |
13 | 15 |
22 """ | 24 """ |
23 def __init__(self): | 25 def __init__(self): |
24 """ | 26 """ |
25 Constructor | 27 Constructor |
26 """ | 28 """ |
27 super().__init__() | 29 super(BookmarksProjectHelper, self).__init__() |
28 | 30 |
29 def initActions(self): | 31 def initActions(self): |
30 """ | 32 """ |
31 Public method to generate the action objects. | 33 Public method to generate the action objects. |
32 """ | 34 """ |