54 @param parent reference to the parent widget |
54 @param parent reference to the parent widget |
55 @type QWidget |
55 @type QWidget |
56 @param name object name of the window |
56 @param name object name of the window |
57 @type str |
57 @type str |
58 """ |
58 """ |
59 super(ShellWindow, self).__init__(parent) |
59 super().__init__(parent) |
60 if name is not None: |
60 if name is not None: |
61 self.setObjectName(name) |
61 self.setObjectName(name) |
62 self.setWindowIcon(UI.PixmapCache.getIcon("shell")) |
62 self.setWindowIcon(UI.PixmapCache.getIcon("shell")) |
63 self.setWindowTitle(self.tr("eric Shell")) |
63 self.setWindowTitle(self.tr("eric Shell")) |
64 |
64 |