QScintilla/SearchReplaceWidget.py

changeset 3039
8dd0165d805d
parent 3034
7ce719013078
child 3060
5883ce99ee12
child 3069
8a9579bbf583
--- a/QScintilla/SearchReplaceWidget.py	Sat Oct 19 16:51:12 2013 +0200
+++ b/QScintilla/SearchReplaceWidget.py	Sat Oct 19 17:42:18 2013 +0200
@@ -116,7 +116,7 @@
 <td>This matches 1 or more times. For example, <code>Sa+m</code> matches
 <code>Sam</code>, <code>Saam</code>, <code>Saaam</code> and so on.</td></tr>
 </table>
-""")
+""")                                                # __IGNORE_WARNING__
         self.setWhatsThis(whatsThis)
         
         self.ui.closeButton.setIcon(UI.PixmapCache.getIcon("close.png"))
@@ -424,16 +424,16 @@
                 else:
                     ok = False
             elif (lineFrom == boundary[0] and indexFrom >= boundary[1]) or \
-               (lineFrom > boundary[0] and lineFrom < boundary[2]) or \
-               (lineFrom == boundary[2] and indexFrom <= boundary[3]):
+                (lineFrom > boundary[0] and lineFrom < boundary[2]) or \
+                    (lineFrom == boundary[2] and indexFrom <= boundary[3]):
                 ok = True
             else:
                 ok = False
             if not ok and len(self.__selections) > 1:
                 # try again
                 while not ok and \
-                      ((backwards and lineFrom >= boundary[0]) or
-                       (not backwards and lineFrom <= boundary[2])):
+                    ((backwards and lineFrom >= boundary[0]) or
+                     (not backwards and lineFrom <= boundary[2])):
                     for ind in range(len(self.__selections)):
                         if lineFrom == self.__selections[ind][0]:
                             after = indexTo > self.__selections[ind][3]
@@ -695,8 +695,8 @@
                 else:
                     ok = False
             elif (lineFrom == boundary[0] and indexFrom >= boundary[1]) or \
-               (lineFrom > boundary[0] and lineFrom < boundary[2]) or \
-               (lineFrom == boundary[2] and indexFrom <= boundary[3]):
+                (lineFrom > boundary[0] and lineFrom < boundary[2]) or \
+                    (lineFrom == boundary[2] and indexFrom <= boundary[3]):
                 ok = True
             else:
                 ok = False
@@ -758,12 +758,12 @@
             E5MessageBox.information(
                 self, self.windowTitle(),
                 self.trUtf8("Replaced {0} occurrences.")
-                    .format(replacements))
+                .format(replacements))
         else:
             E5MessageBox.information(
                 self, self.windowTitle(),
                 self.trUtf8("Nothing replaced because '{0}' was not found.")
-                    .format(ftxt))
+                .format(ftxt))
         
         aw.setCursorPosition(cline, cindex)
         aw.ensureCursorVisible()

eric ide

mercurial