src/eric7/HexEdit/HexEditMainWindow.py

branch
eric7
changeset 9573
9960d19d66b5
parent 9473
3f23dbf37dbe
child 9576
be9f8e7e42e0
--- a/src/eric7/HexEdit/HexEditMainWindow.py	Tue Dec 06 16:00:06 2022 +0100
+++ b/src/eric7/HexEdit/HexEditMainWindow.py	Tue Dec 06 16:04:58 2022 +0100
@@ -271,7 +271,7 @@
         self.closeAct.setStatusTip(self.tr("Close the current hex editor window"))
         self.closeAct.setWhatsThis(
             self.tr(
-                """<b>Close</b>""" """<p>Closes the current hex editor window.</p>"""
+                """<b>Close</b><p>Closes the current hex editor window.</p>"""
             )
         )
         self.closeAct.triggered.connect(self.close)
@@ -287,7 +287,7 @@
         )
         self.closeAllAct.setStatusTip(self.tr("Close all hex editor windows"))
         self.closeAllAct.setWhatsThis(
-            self.tr("""<b>Close All</b>""" """<p>Closes all hex editor windows.</p>""")
+            self.tr("""<b>Close All</b><p>Closes all hex editor windows.</p>""")
         )
         self.closeAllAct.triggered.connect(self.__closeAll)
         self.__actions.append(self.closeAllAct)
@@ -321,7 +321,7 @@
         )
         self.exitAct.setStatusTip(self.tr("Quit the hex editor"))
         self.exitAct.setWhatsThis(
-            self.tr("""<b>Quit</b>""" """<p>Quit the hex editor.</p>""")
+            self.tr("""<b>Quit</b><p>Quit the hex editor.</p>""")
         )
         if not self.__fromEric:
             self.exitAct.triggered.connect(self.__closeAll)
@@ -342,7 +342,7 @@
         )
         self.undoAct.setStatusTip(self.tr("Undo the last change"))
         self.undoAct.setWhatsThis(
-            self.tr("""<b>Undo</b>""" """<p>Undo the last change done.</p>""")
+            self.tr("""<b>Undo</b><p>Undo the last change done.</p>""")
         )
         self.undoAct.triggered.connect(self.__editor.undo)
         self.__actions.append(self.undoAct)
@@ -358,7 +358,7 @@
         )
         self.redoAct.setStatusTip(self.tr("Redo the last change"))
         self.redoAct.setWhatsThis(
-            self.tr("""<b>Redo</b>""" """<p>Redo the last change done.</p>""")
+            self.tr("""<b>Redo</b><p>Redo the last change done.</p>""")
         )
         self.redoAct.triggered.connect(self.__editor.redo)
         self.__actions.append(self.redoAct)
@@ -431,7 +431,7 @@
         )
         self.pasteAct.setStatusTip(self.tr("Paste the clipboard contents"))
         self.pasteAct.setWhatsThis(
-            self.tr("""<b>Paste</b>""" """<p>Paste the clipboard contents.</p>""")
+            self.tr("""<b>Paste</b><p>Paste the clipboard contents.</p>""")
         )
         self.pasteAct.triggered.connect(self.__editor.paste)
         self.__actions.append(self.pasteAct)
@@ -448,7 +448,7 @@
         self.selectAllAct.setStatusTip(self.tr("Select the complete binary data"))
         self.selectAllAct.setWhatsThis(
             self.tr(
-                """<b>Select All</b>""" """<p>Selects the complete binary data.</p>"""
+                """<b>Select All</b><p>Selects the complete binary data.</p>"""
             )
         )
         self.selectAllAct.triggered.connect(self.__editor.selectAll)
@@ -465,7 +465,7 @@
         self.deselectAllAct.setStatusTip(self.tr("Deselect all binary data"))
         self.deselectAllAct.setWhatsThis(
             self.tr(
-                """<b>Deselect All</b>""" """<p>Deselect all all binary data.</p>"""
+                """<b>Deselect All</b><p>Deselect all all binary data.</p>"""
             )
         )
         self.deselectAllAct.triggered.connect(self.__editor.deselectAll)

eric ide

mercurial