24 |
24 |
25 def __init__(self, bookmark, parent=None): |
25 def __init__(self, bookmark, parent=None): |
26 """ |
26 """ |
27 Constructor |
27 Constructor |
28 |
28 |
29 @param bookmark reference to the bookmark to be shown (Bookmark) |
29 @param bookmark reference to the bookmark to be shown |
30 @param parent reference to the parent widget (QWidget) |
30 @type Bookmark |
|
31 @param parent reference to the parent widget |
|
32 @type QWidget |
31 """ |
33 """ |
32 super().__init__(parent) |
34 super().__init__(parent) |
33 self.setupUi(self) |
35 self.setupUi(self) |
34 |
36 |
35 self.__bookmark = bookmark |
37 self.__bookmark = bookmark |