From aaccc02a2b800896b88f1976c847e0012d06ba6b Mon Sep 17 00:00:00 2001 From: donho Date: Sun, 21 Dec 2008 23:30:22 +0000 Subject: [PATCH] [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 --- PowerEditor/src/Notepad_plus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/Notepad_plus.cpp b/PowerEditor/src/Notepad_plus.cpp index fa937c26d..fa99039ea 100644 --- a/PowerEditor/src/Notepad_plus.cpp +++ b/PowerEditor/src/Notepad_plus.cpp @@ -1966,7 +1966,7 @@ BOOL Notepad_plus::notify(SCNotification *notification) } #ifdef UNICODE WcharMbcsConvertor *wmc = WcharMbcsConvertor::getInstance(); - goToViewW = wmc->char2wchar(cloneToViewA, _nativeLangEncoding); + goToViewW = wmc->char2wchar(goToViewA, _nativeLangEncoding); cloneToViewW = wmc->char2wchar(cloneToViewA, _nativeLangEncoding); pGoToView = goToViewW.c_str(); pCloneToView = cloneToViewW.c_str();