src/eric7/QScintilla/MiniEditor.py

branch
eric7
changeset 9573
9960d19d66b5
parent 9482
a2bc06a54d9d
child 9576
be9f8e7e42e0
diff -r 3b46c662a004 -r 9960d19d66b5 src/eric7/QScintilla/MiniEditor.py
--- a/src/eric7/QScintilla/MiniEditor.py	Tue Dec 06 16:00:06 2022 +0100
+++ b/src/eric7/QScintilla/MiniEditor.py	Tue Dec 06 16:04:58 2022 +0100
@@ -622,7 +622,7 @@
         self.newAct.setStatusTip(self.tr("Open an empty editor window"))
         self.newAct.setWhatsThis(
             self.tr(
-                """<b>New</b>""" """<p>An empty editor window will be created.</p>"""
+                """<b>New</b><p>An empty editor window will be created.</p>"""
             )
         )
         self.newAct.triggered.connect(self.__newFile)
@@ -717,7 +717,7 @@
         )
         self.closeAct.setStatusTip(self.tr("Close the editor window"))
         self.closeAct.setWhatsThis(
-            self.tr("""<b>Close Window</b>""" """<p>Close the current window.</p>""")
+            self.tr("""<b>Close Window</b><p>Close the current window.</p>""")
         )
         self.closeAct.triggered.connect(self.close)
         self.fileActions.append(self.closeAct)
@@ -874,7 +874,7 @@
         self.deleteAct.setStatusTip(self.tr("Clear all text"))
         self.deleteAct.setWhatsThis(
             self.tr(
-                """<b>Clear</b>""" """<p>Delete all text of the current editor.</p>"""
+                """<b>Clear</b><p>Delete all text of the current editor.</p>"""
             )
         )
         self.deleteAct.triggered.connect(self.__textEdit.clear)

eric ide

mercurial