aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexEDIFACT.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-06-22 15:53:47 +1000
committerNeil <nyamatongwe@gmail.com>2017-06-22 15:53:47 +1000
commite2ac8b7e987becbdeb6333f07d4627bce168cb55 (patch)
treec7bd572bf05f78de328606fee2d719b7be43c0a4 /lexers/LexEDIFACT.cxx
parentba1197944de6599dd02583455957be8ca9412eec (diff)
downloadscintilla-mirror-e2ac8b7e987becbdeb6333f07d4627bce168cb55.tar.gz
Backport: Add a DefaultLexer class which lexers can subclass if they want reasonable
default implementations of the ILexerWithSubStyles interface methods. Backport of changeset 6326:d18622e37a3e.
Diffstat (limited to 'lexers/LexEDIFACT.cxx')
-rw-r--r--lexers/LexEDIFACT.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/lexers/LexEDIFACT.cxx b/lexers/LexEDIFACT.cxx
index f7e55bfe9..63805b04e 100644
--- a/lexers/LexEDIFACT.cxx
+++ b/lexers/LexEDIFACT.cxx
@@ -18,12 +18,13 @@
#include "LexAccessor.h"
#include "LexerModule.h"
+#include "DefaultLexer.h"
#ifdef SCI_NAMESPACE
using namespace Scintilla;
#endif
-class LexerEDIFACT : public ILexer
+class LexerEDIFACT : public DefaultLexer
{
public:
LexerEDIFACT();