diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/CaseConvert.cxx | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/src/CaseConvert.cxx b/src/CaseConvert.cxx index d9ecc3b68..d5419d5ce 100644 --- a/src/CaseConvert.cxx +++ b/src/CaseConvert.cxx @@ -598,6 +598,10 @@ CaseConverter *ConverterForConversion(enum CaseConversion conversion) {  } +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif +  ICaseConverter *ConverterFor(enum CaseConversion conversion) {  	CaseConverter *pCaseConv = ConverterForConversion(conversion);  	if (!pCaseConv->Initialised()) @@ -618,3 +622,7 @@ size_t CaseConvertString(char *converted, size_t sizeConverted, const char *mixe  		SetupConversions(conversion);  	return pCaseConv->CaseConvertString(converted, sizeConverted, mixed, lenMixed);  } + +#ifdef SCI_NAMESPACE +} +#endif | 
