diff options
| author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:46:01 -0500 |
|---|---|---|
| committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:46:01 -0500 |
| commit | fd8d92656e630a44ed99688fc01f1896836b4c52 (patch) | |
| tree | 1b67eaa5e16ad5056124ab080b4f4a3e96d74fc0 /src/LexSQL.cpp | |
| parent | 29c4424ab987df40a8a3df93165f84561dee1a43 (diff) | |
| download | tqscintilla-fd8d92656e630a44ed99688fc01f1896836b4c52.tar.gz tqscintilla-fd8d92656e630a44ed99688fc01f1896836b4c52.zip | |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src/LexSQL.cpp')
| -rwxr-xr-x | src/LexSQL.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LexSQL.cpp b/src/LexSQL.cpp index f5d3598..d8e14b9 100755 --- a/src/LexSQL.cpp +++ b/src/LexSQL.cpp @@ -100,7 +100,7 @@ static void ColouriseSQLDoc(unsigned int startPos, int length, int initStyle, Wo sc.SetState(nextState); } break; - case SCE_SQL_TQUOTEDIDENTIFIER: + case SCE_SQL_QUOTEDIDENTIFIER: if (sc.ch == 0x60) { if (sc.chNext == 0x60) { sc.Forward(); // Ignore it @@ -181,7 +181,7 @@ static void ColouriseSQLDoc(unsigned int startPos, int length, int initStyle, Wo } else if (IsAWordStart(sc.ch)) { sc.SetState(SCE_SQL_IDENTIFIER); } else if (sc.ch == 0x60 && sqlBackticksIdentifier) { - sc.SetState(SCE_SQL_TQUOTEDIDENTIFIER); + sc.SetState(SCE_SQL_QUOTEDIDENTIFIER); } else if (sc.Match('/', '*')) { if (sc.Match("/**") || sc.Match("/*!")) { // Support of Doxygen doc. style sc.SetState(SCE_SQL_COMMENTDOC); |
