Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py

changeset 3010
befeff46ec0f
parent 2964
84b65fb9e780
child 3057
10516539f238
child 3160
209a07d7e401
--- a/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py	Sat Oct 12 17:31:40 2013 +0200
+++ b/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py	Sat Oct 12 18:25:29 2013 +0200
@@ -42,14 +42,14 @@
         Public slot to save the EditorCalltips configuration.
         """
         if self.ctNoContextButton.isChecked():
-            Preferences.setEditor("CallTipsStyle",
-                                  QsciScintilla.CallTipsNoContext)
+            Preferences.setEditor(
+                "CallTipsStyle", QsciScintilla.CallTipsNoContext)
         elif self.ctNoAutoCompletionButton.isChecked():
-            Preferences.setEditor("CallTipsStyle",
-                                  QsciScintilla.CallTipsNoAutoCompletionContext)
+            Preferences.setEditor(
+                "CallTipsStyle", QsciScintilla.CallTipsNoAutoCompletionContext)
         elif self.ctContextButton.isChecked():
-            Preferences.setEditor("CallTipsStyle",
-                                  QsciScintilla.CallTipsContext)
+            Preferences.setEditor(
+                "CallTipsStyle", QsciScintilla.CallTipsContext)
 
 
 def create(dlg):

eric ide

mercurial