72 try: |
72 try: |
73 self.setHighlightHashQuotedStrings( |
73 self.setHighlightHashQuotedStrings( |
74 Preferences.getEditor("CppHighlightHashQuotedStrings")) |
74 Preferences.getEditor("CppHighlightHashQuotedStrings")) |
75 except AttributeError: |
75 except AttributeError: |
76 pass |
76 pass |
|
77 try: |
|
78 self.setHighlightBackQuotedStrings( |
|
79 Preferences.getEditor("CppHighlightBackQuotedStrings")) |
|
80 except AttributeError: |
|
81 pass |
|
82 try: |
|
83 self.setHighlightEscapeSequences( |
|
84 Preferences.getEditor("CppHighlightEscapeSequences")) |
|
85 except AttributeError: |
|
86 pass |
|
87 try: |
|
88 self.setVerbatimStringEscapeSequencesAllowed( |
|
89 Preferences.getEditor( |
|
90 "CppVerbatimStringEscapeSequencesAllowed")) |
|
91 except AttributeError: |
|
92 pass |
77 |
93 |
78 def autoCompletionWordSeparators(self): |
94 def autoCompletionWordSeparators(self): |
79 """ |
95 """ |
80 Public method to return the list of separators for autocompletion. |
96 Public method to return the list of separators for autocompletion. |
81 |
97 |