57 pass |
57 pass |
58 try: |
58 try: |
59 self.setStylePreprocessor(Preferences.getEditor("CppStylePreprocessor")) |
59 self.setStylePreprocessor(Preferences.getEditor("CppStylePreprocessor")) |
60 except AttributeError: |
60 except AttributeError: |
61 pass |
61 pass |
|
62 try: |
|
63 self.setHighlightTripleQuotedStrings( |
|
64 Preferences.getEditor("CppHighlightTripleQuotedStrings")) |
|
65 except AttributeError: |
|
66 pass |
62 |
67 |
63 def autoCompletionWordSeparators(self): |
68 def autoCompletionWordSeparators(self): |
64 """ |
69 """ |
65 Public method to return the list of separators for autocompletion. |
70 Public method to return the list of separators for autocompletion. |
66 |
71 |