diff options
author | nyamatongwe <devnull@localhost> | 2010-07-13 21:40:42 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-07-13 21:40:42 +1000 |
commit | 0f8368b69dc3fd123dab6f0e06ec3f735fd14eb8 (patch) | |
tree | c0f4f250840266e2cfcac2e03fa3f5e5a855da5f /win32/ScintillaWin.cxx | |
parent | d4d3f82cc71c64c05ce6efdcb61164092da51c2b (diff) | |
download | scintilla-mirror-0f8368b69dc3fd123dab6f0e06ec3f735fd14eb8.tar.gz |
Platform files changed for new lexer design.
Diffstat (limited to 'win32/ScintillaWin.cxx')
-rw-r--r-- | win32/ScintillaWin.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 31a7a0ab5..570a2bc88 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -25,13 +25,12 @@ #include "Platform.h" +#include "ILexer.h" #include "Scintilla.h" + #ifdef SCI_LEXER #include "SciLexer.h" -#include "PropSet.h" -#include "PropSetSimple.h" -#include "Accessor.h" -#include "KeyWords.h" +#include "LexerModule.h" #endif #include "SplitVector.h" #include "Partitioning.h" @@ -2050,7 +2049,7 @@ void ScintillaWin::GetIntelliMouseParameters() { void ScintillaWin::CopyToClipboard(const SelectionText &selectedText) { if (!::OpenClipboard(MainHWND())) - return ; + return; ::EmptyClipboard(); GlobalMemory uniText; |