$OpenBSD: patch-Framework_GNUMail_FindWindow_m,v 1.1 2010/10/24 13:03:22 sebastia Exp $

Fix button label.

--- Framework/GNUMail/FindWindow.m.orig	Sun Oct 24 13:49:46 2010
+++ Framework/GNUMail/FindWindow.m	Sun Oct 24 13:50:27 2010
@@ -135,21 +135,21 @@
   [[box contentView] addSubview: regularExpressionButton];
 
   findAllButton = [[NSButton alloc] initWithFrame: NSMakeRect(10,10,75,ButtonHeight)];
-  [findAllButton setStringValue: _(@"Find All")];
+  [findAllButton setTitle: _(@"Find All")];
   [findAllButton setTarget: [self windowController]];
   [findAllButton setAction: @selector(findAll:) ];
   [[self contentView] addSubview: findAllButton];
     
   previousButton = [[NSButton alloc] initWithFrame: NSMakeRect(180,10,75,ButtonHeight)];
   [previousButton setAutoresizingMask: NSViewMinXMargin];
-  [previousButton setStringValue: _(@"Previous")];
+  [previousButton setTitle: _(@"Previous")];
   [previousButton setTarget: [self windowController]];
   [previousButton setAction: @selector(previousMessage:)];
   [[self contentView] addSubview: previousButton];
 
   nextButton = [[NSButton alloc] initWithFrame: NSMakeRect(260,10,75,ButtonHeight)];
   [nextButton setAutoresizingMask: NSViewMinXMargin];
-  [nextButton setStringValue: _(@"Next")];
+  [nextButton setTitle: _(@"Next")];
   [nextButton setTarget: [self windowController]];
   [nextButton setAction: @selector(nextMessage:)];
   [[self contentView] addSubview: nextButton];
