GNUstep classes needing to add conformity to NSTextFieldDelegate protocol

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@35244 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Marcian Lytwyn 2012-06-28 19:44:50 +00:00
parent 36dd211066
commit c02881865b
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2012-06-28 Marcian Lytwyn <marcian.lytwyn@advcsi.com>
* ColorPickers/GSNamedColorPicker.m
GSNamedColorPicker needs to conform to NSTtextFieldDelegate
* ColorPickers/GSStandardColorPicker.h
GSStandardCSColorPicker needs to conform to NSTextFieldDelegate
2012-06-27 Marcian Lytwyn <marcian.lytwyn@advcsi.com>
* Source/NSWindow.m - Fix [NSWindow screen] method according
@ -17,7 +24,7 @@
* Source/NSSavePanel.m - Qualify delegate method(s) with
id<NSOpenSavePanelDelegate>
*** NSOpenSavePanelDelegate ***
*** NSControlTextEditingDelegate ***
* Headers/AppKit/NSControl.h - Added NSControlTextEditingDelegate
protocol definition
* Headers/AppKit/NSTextField.h - Added NSTextFieldDelegate

View file

@ -27,7 +27,7 @@
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
@interface GSNamedColorPicker: NSColorPicker <NSColorPickingCustom>
@interface GSNamedColorPicker: NSColorPicker <NSColorPickingCustom, NSTextFieldDelegate>
{
NSView *baseView;
NSComboBox *cb;

View file

@ -35,6 +35,8 @@
@class GSTable, NSSlider, NSTextField;
@class NSBox, NSButtonCell, NSMatrix;
@protocol NSTextFieldDelegate;
@interface GSStandardColorPicker: NSColorPicker <NSColorPickingCustom>
{
GSTable *baseView;
@ -50,7 +52,7 @@
@end
@interface GSStandardCSColorPicker: NSColorPicker <NSColorPickingCustom>
@interface GSStandardCSColorPicker: NSColorPicker <NSColorPickingCustom, NSTextFieldDelegate>
{
GSTable *baseView;;