mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
Moved variables to class to fix linking issues.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@25894 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4d6ba13fb2
commit
d5556cc6b0
3 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-01-07 20:04-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/0Menus/GormMenuItemAttributesInspector.h
|
||||
* Palettes/0Menus/GormMenuItemAttributesInspector.m: Moved strings
|
||||
for non-printable characters to class variables.
|
||||
|
||||
2008-01-07 18:50-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormGenericEditor.m: Removed patch for bug#17539. Was
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
id ctrlBtn;
|
||||
id shiftBtn;
|
||||
id cmdBtn;
|
||||
NSString *upString;
|
||||
NSString *dnString;
|
||||
NSString *ltString;
|
||||
NSString *rtString;
|
||||
}
|
||||
@end
|
||||
|
||||
|
|
|
@ -39,11 +39,6 @@ const unichar dn[]={NSDownArrowFunctionKey};
|
|||
const unichar lt[]={NSLeftArrowFunctionKey};
|
||||
const unichar rt[]={NSRightArrowFunctionKey};
|
||||
|
||||
NSString *upString = nil;
|
||||
NSString *dnString = nil;
|
||||
NSString *ltString = nil;
|
||||
NSString *rtString = nil;
|
||||
|
||||
#define VSTR(str) ({NSString *_str = (NSString *)str; ((NSString *)_str) ? (NSString *)_str : (NSString *)@"";})
|
||||
|
||||
@implementation GormMenuItemAttributesInspector
|
||||
|
|
Loading…
Reference in a new issue