diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:19:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:19:44 -0600 |
commit | 32e60eb3ba1906390fd28f8e53d7851903f6810a (patch) | |
tree | 9afbb5c66f23cd2fab4b8f363f239d9e9d60e4d2 /qt/qextscintillalexerbatch.cpp | |
parent | 5fbeeb1ce8009d85f988021e18bb11c422897d3a (diff) | |
download | tqscintilla-32e60eb3ba1906390fd28f8e53d7851903f6810a.tar.gz tqscintilla-32e60eb3ba1906390fd28f8e53d7851903f6810a.zip |
Fix linear alphabet string errors
Diffstat (limited to 'qt/qextscintillalexerbatch.cpp')
-rw-r--r-- | qt/qextscintillalexerbatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/qextscintillalexerbatch.cpp b/qt/qextscintillalexerbatch.cpp index 8a7482c..c1c51a3 100644 --- a/qt/qextscintillalexerbatch.cpp +++ b/qt/qextscintillalexerbatch.cpp @@ -58,7 +58,7 @@ const char *QextScintillaLexerBatch::lexer() const // Return the string of characters that comprise a word. const char *QextScintillaLexerBatch::wordCharacters() const { - return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ-"; + return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-"; } |