diff options
author | Timothy Pearson <[email protected]> | 2012-01-25 16:19:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-25 16:19:45 -0600 |
commit | 37fb993b5bf233e38f304df8fb8ec88c7a2fdce8 (patch) | |
tree | d98a40c4c74a36cebfdd8092f60af4f941386a8c /tools/designer/plugins/cppeditor | |
parent | 663d27a3f780102518e9bdef0fbaf5e5d1b16d52 (diff) | |
download | tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.tar.gz tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.zip |
Fix linear alphabet string errors
Diffstat (limited to 'tools/designer/plugins/cppeditor')
-rw-r--r-- | tools/designer/plugins/cppeditor/syntaxhighliter_cpp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/designer/plugins/cppeditor/syntaxhighliter_cpp.cpp b/tools/designer/plugins/cppeditor/syntaxhighliter_cpp.cpp index ff7204401..5d4441fda 100644 --- a/tools/designer/plugins/cppeditor/syntaxhighliter_cpp.cpp +++ b/tools/designer/plugins/cppeditor/syntaxhighliter_cpp.cpp @@ -276,7 +276,7 @@ void SyntaxHighlighter_CPP::process( TQTextDocument *doc, TQTextParagraph *strin else paragData = new ParagData; - TQString alphabeth = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ"; + TQString alphabeth = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; TQString mathChars = "xXeE"; TQString numbers = "0123456789"; bool questionMark = FALSE; |