diff options
| author | Neil <nyamatongwe@gmail.com> | 2017-09-11 09:05:35 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2017-09-11 09:05:35 +1000 | 
| commit | 313a81f7f8419b3c1ac6ac57ea7719c7b8aa28cf (patch) | |
| tree | 2ec6649c5e74a1d7127d150f485432def1814a1a /src/ScintillaBase.cxx | |
| parent | 7b287ecd7f8527bb8f47e08090a0120ff418c730 (diff) | |
| download | scintilla-mirror-313a81f7f8419b3c1ac6ac57ea7719c7b8aa28cf.tar.gz | |
The Scintilla namespace is always active for internal symbols and for the lexer
interfaces ILexer4 and IDocument.
Diffstat (limited to 'src/ScintillaBase.cxx')
| -rw-r--r-- | src/ScintillaBase.cxx | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 0f491c30e..7c2e0eb8d 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -61,9 +61,7 @@  #include "AutoComplete.h"  #include "ScintillaBase.h" -#ifdef SCI_NAMESPACE  using namespace Scintilla; -#endif  ScintillaBase::ScintillaBase() {  	displayPopupMenu = SC_POPUP_ALL; @@ -545,9 +543,7 @@ void ScintillaBase::RightButtonDownWithModifiers(Point pt, unsigned int curTime,  #ifdef SCI_LEXER -#ifdef SCI_NAMESPACE  namespace Scintilla { -#endif  class LexState : public LexInterface {  	const LexerModule *lexCurrent; @@ -589,9 +585,7 @@ public:  	const char *DescriptionOfStyle(int style);  }; -#ifdef SCI_NAMESPACE  } -#endif  LexState::LexState(Document *pdoc_) : LexInterface(pdoc_) {  	lexCurrent = 0; | 
