[BUG_FIXED] Fix "Go to another view" translation coding error.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@373 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
donho 2008-12-21 23:30:22 +00:00
parent 90420137f6
commit aaccc02a2b

View File

@ -1966,7 +1966,7 @@ BOOL Notepad_plus::notify(SCNotification *notification)
} }
#ifdef UNICODE #ifdef UNICODE
WcharMbcsConvertor *wmc = WcharMbcsConvertor::getInstance(); WcharMbcsConvertor *wmc = WcharMbcsConvertor::getInstance();
goToViewW = wmc->char2wchar(cloneToViewA, _nativeLangEncoding); goToViewW = wmc->char2wchar(goToViewA, _nativeLangEncoding);
cloneToViewW = wmc->char2wchar(cloneToViewA, _nativeLangEncoding); cloneToViewW = wmc->char2wchar(cloneToViewA, _nativeLangEncoding);
pGoToView = goToViewW.c_str(); pGoToView = goToViewW.c_str();
pCloneToView = cloneToViewW.c_str(); pCloneToView = cloneToViewW.c_str();