src/eric7/QScintilla/ShellWindow.py

branch
eric7
changeset 9573
9960d19d66b5
parent 9473
3f23dbf37dbe
child 9576
be9f8e7e42e0
diff -r 3b46c662a004 -r 9960d19d66b5 src/eric7/QScintilla/ShellWindow.py
--- a/src/eric7/QScintilla/ShellWindow.py	Tue Dec 06 16:00:06 2022 +0100
+++ b/src/eric7/QScintilla/ShellWindow.py	Tue Dec 06 16:04:58 2022 +0100
@@ -228,7 +228,7 @@
         self.exitAct.setStatusTip(self.tr("Quit the Shell"))
         self.exitAct.setWhatsThis(
             self.tr(
-                """<b>Quit the Shell</b>""" """<p>This quits the Shell window.</p>"""
+                """<b>Quit the Shell</b><p>This quits the Shell window.</p>"""
             )
         )
         self.exitAct.triggered.connect(self.quit)
@@ -345,7 +345,7 @@
         )
         self.cutAct.setWhatsThis(
             self.tr(
-                """<b>Cut</b>""" """<p>Cut the selected text to the clipboard.</p>"""
+                """<b>Cut</b><p>Cut the selected text to the clipboard.</p>"""
             )
         )
         self.cutAct.triggered.connect(self.__shell.cut)
@@ -369,7 +369,7 @@
         )
         self.copyAct.setWhatsThis(
             self.tr(
-                """<b>Copy</b>""" """<p>Copy the selected text to the clipboard.</p>"""
+                """<b>Copy</b><p>Copy the selected text to the clipboard.</p>"""
             )
         )
         self.copyAct.triggered.connect(self.__shell.copy)
@@ -415,7 +415,7 @@
             QCoreApplication.translate("ViewManager", "Clear all text")
         )
         self.clearAct.setWhatsThis(
-            self.tr("""<b>Clear</b>""" """<p>Delete all text.</p>""")
+            self.tr("""<b>Clear</b><p>Delete all text.</p>""")
         )
         self.clearAct.triggered.connect(self.__shell.clear)
         self.editActions.append(self.clearAct)

eric ide

mercurial