53 self.setFoldCompact(Preferences.getEditor("AllFoldCompact")) |
53 self.setFoldCompact(Preferences.getEditor("AllFoldCompact")) |
54 try: |
54 try: |
55 self.setDollarsAllowed(Preferences.getEditor("CppDollarsAllowed")) |
55 self.setDollarsAllowed(Preferences.getEditor("CppDollarsAllowed")) |
56 except AttributeError: |
56 except AttributeError: |
57 pass |
57 pass |
|
58 try: |
|
59 self.setStylePreprocessor(Preferences.getEditor("CppStylePreprocessor")) |
|
60 except AttributeError: |
|
61 pass |
58 |
62 |
59 def autoCompletionWordSeparators(self): |
63 def autoCompletionWordSeparators(self): |
60 """ |
64 """ |
61 Public method to return the list of separators for autocompletion. |
65 Public method to return the list of separators for autocompletion. |
62 |
66 |