[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: NSCell enhancement
From: |
Ludovic Marcotte |
Subject: |
Re: NSCell enhancement |
Date: |
Tue, 23 Oct 2001 08:45:59 -0400 (EDT) |
Hi Nicola,
Since you applied this patch, you might apply as well this one:
in NSOpenPanel: - (void) _selectTextInColumn: (int)column
We should replace:
[[_form cellAtIndex: 0] setStringValue:nil];
by
[[_form cellAtIndex: 0] setStringValue: @""];
And in NSSavePane: - (void) selectText: (id)sender
We should replace
[[_form cellAtIndex:0] setStringValue:nil];
by
[[_form cellAtIndex:0] setStringValue: @""];
Ludo
--
Live as if you were to die tomorrow.
Learn as if you were to live forever.
- Gandhi