eric6/QScintilla/ShellWindow.py

changeset 8218
7c09585bd960
parent 8150
fc1ae39af8c9
child 8220
006ee31b4835
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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

eric ide

mercurial