Author: dpsimons
Date: Wed Aug 26 00:58:05 2015
New Revision: 38932

URL: http://svn.gna.org/viewcvs/gnustep?rev=38932&view=rev
Log:
Fix Ignore Case option to work

Modified:
    libs/gui/branches/gnustep_testplant_branch/ChangeLog
    libs/gui/branches/gnustep_testplant_branch/Source/GSTextFinder.m

Modified: libs/gui/branches/gnustep_testplant_branch/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/ChangeLog?rev=38932&r1=38931&r2=38932&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/ChangeLog        (original)
+++ libs/gui/branches/gnustep_testplant_branch/ChangeLog        Wed Aug 26 
00:58:05 2015
@@ -1,3 +1,7 @@
+2015-08-25  Doug Simons <[email protected]>
+
+       * Source/GSTextFinder.m: Fix Ignore Case option to work.
+
 2015-08-14  Doug Simons <[email protected]>
 
        * Source/NSSplitView.m: Treat an empty autosaveName as nil

Modified: libs/gui/branches/gnustep_testplant_branch/Source/GSTextFinder.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/branches/gnustep_testplant_branch/Source/GSTextFinder.m?rev=38932&r1=38931&r2=38932&view=diff
==============================================================================
--- libs/gui/branches/gnustep_testplant_branch/Source/GSTextFinder.m    
(original)
+++ libs/gui/branches/gnustep_testplant_branch/Source/GSTextFinder.m    Wed Aug 
26 00:58:05 2015
@@ -480,6 +480,7 @@
       if ([ignoreCaseButton state] != NSOffState)
        {
          *options |= NSCaseInsensitiveSearch;
+         *options &= ~NSLiteralSearch; // literal search is always 
case-sensitive, so it must be removed in this case
        }
       else
        {


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to