diff -r 44e15eda6506 -r e8fc383322f7 eric6/IconEditor/IconEditorWindow.py --- a/eric6/IconEditor/IconEditorWindow.py Tue Jan 05 18:28:31 2021 +0100 +++ b/eric6/IconEditor/IconEditorWindow.py Wed Jan 06 13:47:01 2021 +0100 @@ -48,7 +48,7 @@ @param fileName name of a file to load on startup (string) @param parent parent widget of this window (QWidget) @param fromEric flag indicating whether it was called from within - eric6 (boolean) + eric (boolean) @param initShortcutsOnly flag indicating to just initialize the keyboard shortcuts (boolean) @param project reference to the project object (Project) @@ -1146,14 +1146,14 @@ file = QFile(fileName) if not file.exists(): E5MessageBox.warning( - self, self.tr("eric6 Icon Editor"), + self, self.tr("eric Icon Editor"), self.tr("The file '{0}' does not exist.") .format(fileName)) return if not file.open(QFile.ReadOnly): E5MessageBox.warning( - self, self.tr("eric6 Icon Editor"), + self, self.tr("eric Icon Editor"), self.tr("Cannot read file '{0}:\n{1}.") .format(fileName, file.errorString())) return @@ -1173,7 +1173,7 @@ file = QFile(fileName) if not file.open(QFile.WriteOnly): E5MessageBox.warning( - self, self.tr("eric6 Icon Editor"), + self, self.tr("eric Icon Editor"), self.tr("Cannot write file '{0}:\n{1}.") .format(fileName, file.errorString())) @@ -1187,7 +1187,7 @@ if not res: E5MessageBox.warning( - self, self.tr("eric6 Icon Editor"), + self, self.tr("eric Icon Editor"), self.tr("Cannot write file '{0}:\n{1}.") .format(fileName, file.errorString())) @@ -1240,7 +1240,7 @@ if self.__editor.isDirty(): ret = E5MessageBox.okToClearData( self, - self.tr("eric6 Icon Editor"), + self.tr("eric Icon Editor"), self.tr("""The icon image has unsaved changes."""), self.__saveIcon) if not ret: @@ -1329,15 +1329,15 @@ Private slot to show a little About message. """ E5MessageBox.about( - self, self.tr("About eric6 Icon Editor"), - self.tr("The eric6 Icon Editor is a simple editor component" + self, self.tr("About eric Icon Editor"), + self.tr("The eric Icon Editor is a simple editor component" " to perform icon drawing tasks.")) def __aboutQt(self): """ Private slot to handle the About Qt dialog. """ - E5MessageBox.aboutQt(self, "eric6 Icon Editor") + E5MessageBox.aboutQt(self, "eric Icon Editor") def __whatsThis(self): """