summaryrefslogtreecommitdiffstats
path: root/qt/qextscintilla.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-25 16:19:44 -0600
committerTimothy Pearson <[email protected]>2012-01-25 16:19:44 -0600
commit32e60eb3ba1906390fd28f8e53d7851903f6810a (patch)
tree9afbb5c66f23cd2fab4b8f363f239d9e9d60e4d2 /qt/qextscintilla.cpp
parent5fbeeb1ce8009d85f988021e18bb11c422897d3a (diff)
downloadtqscintilla-32e60eb3ba1906390fd28f8e53d7851903f6810a.tar.gz
tqscintilla-32e60eb3ba1906390fd28f8e53d7851903f6810a.zip
Fix linear alphabet string errors
Diffstat (limited to 'qt/qextscintilla.cpp')
-rw-r--r--qt/qextscintilla.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/qextscintilla.cpp b/qt/qextscintilla.cpp
index d586e21..308a8c2 100644
--- a/qt/qextscintilla.cpp
+++ b/qt/qextscintilla.cpp
@@ -42,7 +42,7 @@
static const int defaultFoldMarginWidth = 14;
// The default set of characters that make up a word.
-static const char *defaultWordChars = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ0123456789";
+static const char *defaultWordChars = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
// The ctor.