Preferences/ConfigurationPages/EditorSpellCheckingPage.py

changeset 564
b3d966393ba9
parent 97
c4086afea02b
child 791
9ec2ac20e54e
diff -r e35d2cda9a74 -r b3d966393ba9 Preferences/ConfigurationPages/EditorSpellCheckingPage.py
--- a/Preferences/ConfigurationPages/EditorSpellCheckingPage.py	Sat Sep 04 19:51:19 2010 +0200
+++ b/Preferences/ConfigurationPages/EditorSpellCheckingPage.py	Sat Sep 04 19:51:48 2010 +0200
@@ -65,7 +65,7 @@
         self.pelEdit.setText(Preferences.getEditor("SpellCheckingPersonalExcludeList"))
         
         if self.spellingFrame.isEnabled():
-            self.enabledCheckBox.setChecked(\
+            self.enabledCheckBox.setChecked(
                 Preferences.getEditor("AutoSpellCheckingEnabled"))
         else:
             self.enabledCheckBox.setChecked(False)  # not available
@@ -110,7 +110,7 @@
         """
         Private method to select the personal word list file.
         """
-        file = QFileDialog.getOpenFileName(\
+        file = QFileDialog.getOpenFileName(
             self,
             self.trUtf8("Select personal word list"),
             self.pwlEdit.text(),
@@ -124,7 +124,7 @@
         """
         Private method to select the personal exclude list file.
         """
-        file = QFileDialog.getOpenFileName(\
+        file = QFileDialog.getOpenFileName(
             self,
             self.trUtf8("Select personal exclude list"),
             self.pelEdit.text(),
@@ -140,4 +140,4 @@
     @param dlg reference to the configuration dialog
     """
     page = EditorSpellCheckingPage()
-    return page
+    return page
\ No newline at end of file

eric ide

mercurial