From 0e67b99240297211b257de325e370120adbdb36b Mon Sep 17 00:00:00 2001 From: Don Ho Date: Tue, 1 May 2012 14:04:35 +0000 Subject: [PATCH] [BUG_FIXED] Fix a logical bug for important amount file to to open feature. git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@905 f5eea248-9336-0410-98b8-ebc06183d4e3 --- PowerEditor/src/NppIO.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PowerEditor/src/NppIO.cpp b/PowerEditor/src/NppIO.cpp index 9bf664ae..4e3d2b08 100644 --- a/PowerEditor/src/NppIO.cpp +++ b/PowerEditor/src/NppIO.cpp @@ -198,9 +198,9 @@ BufferID Notepad_plus::doOpen(const TCHAR *fileName, bool isReadOnly, int encodi int answer = _nativeLangSpeaker.messageBox("NbFileToOpenImportantWaring", _pPublicInterface->getHSelf(), TEXT("Number of files to open are too important.\rAre you sure to open them?"), - TEXT("Number of files to open is too large"), + TEXT("Amount of files to open is too large"), MB_YESNO|MB_APPLMODAL); - ok2Open = answer != IDYES; + ok2Open = answer == IDYES; } if (ok2Open)