* Source/GSCharacterPanel.m: Implement -[NSApplication orderFrontCharacterPalette:]

* Source/NSFontPanel.m: Use NSApplication method to order front character palette


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33815 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ericwa 2011-09-07 19:31:22 +00:00
parent ed053b5b5e
commit 8ed41d52d4
3 changed files with 17 additions and 1 deletions

View file

@ -47,6 +47,17 @@
#include <unicode/uchar.h>
#include <unicode/ustring.h>
@implementation NSApplication (CharacterPanel)
- (void) orderFrontCharacterPalette: (id)sender
{
[[GSCharacterPanel sharedCharacterPanel] orderFront: sender];
}
@end
@interface GSVerticallyCenteredTextFieldCell : NSTextFieldCell
{
}