Preferences/ConfigurationPages/EditorAutocompletionPage.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3025
67064c71df21
child 3145
a9de05d4a22f
--- a/Preferences/ConfigurationPages/EditorAutocompletionPage.py	Fri Oct 18 23:00:41 2013 +0200
+++ b/Preferences/ConfigurationPages/EditorAutocompletionPage.py	Fri Nov 01 15:48:48 2013 +0100
@@ -42,13 +42,17 @@
         """
         Public slot to save the Editor Autocompletion configuration.
         """
-        Preferences.setEditor("AutoCompletionEnabled",
+        Preferences.setEditor(
+            "AutoCompletionEnabled",
             self.acEnabledCheckBox.isChecked())
-        Preferences.setEditor("AutoCompletionCaseSensitivity",
+        Preferences.setEditor(
+            "AutoCompletionCaseSensitivity",
             self.acCaseSensitivityCheckBox.isChecked())
-        Preferences.setEditor("AutoCompletionReplaceWord",
+        Preferences.setEditor(
+            "AutoCompletionReplaceWord",
             self.acReplaceWordCheckBox.isChecked())
-        Preferences.setEditor("AutoCompletionThreshold",
+        Preferences.setEditor(
+            "AutoCompletionThreshold",
             self.acThresholdSlider.value())
     
 

eric ide

mercurial