summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-24 11:47:30 +0200
committerNoel Grandin <noel@peralex.com>2016-02-24 11:48:39 +0200
commitf163745cca6627fd8de0a089a8c30b3c6e17193f (patch)
tree30ff0edc1772cad1a96dd6bf3c02a6a8e34dd8f0 /svtools
parenta5e53f9ffdde320a7ba104a1e01b3f5ef75d7975 (diff)
convert HighlighterLanguage to scoped enum
Change-Id: Ibf0871601e52ea4fa49e9622176431943c55abdd
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/edit/editsyntaxhighlighter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/edit/editsyntaxhighlighter.cxx b/svtools/source/edit/editsyntaxhighlighter.cxx
index c4033349b2ee..b8bc4d118a83 100644
--- a/svtools/source/edit/editsyntaxhighlighter.cxx
+++ b/svtools/source/edit/editsyntaxhighlighter.cxx
@@ -120,7 +120,7 @@ Color MultiLineEditSyntaxHighlight::GetColorValue(TokenType aToken)
Color aColor;
switch (aHighlighter.GetLanguage())
{
- case HIGHLIGHT_SQL:
+ case HighlighterLanguage::SQL:
{
switch (aToken)
{
@@ -135,7 +135,7 @@ Color MultiLineEditSyntaxHighlight::GetColorValue(TokenType aToken)
}
break;
}
- case HIGHLIGHT_BASIC:
+ case HighlighterLanguage::Basic:
{
switch (aToken)
{