Update of /cvsroot/scopeapp/scopeapp/src
In directory sc8-pr-cvs1:/tmp/cvs-serv7486
Modified Files:
Tag: scopeapp-gnustep
ScopeAppGlobals.h
Log Message:
Redefinition of "_" is not necessary on GNUstep. Already in NSBundle.h
Index: ScopeAppGlobals.h
===================================================================
RCS file: /cvsroot/scopeapp/scopeapp/src/ScopeAppGlobals.h,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** ScopeAppGlobals.h 19 Oct 2002 06:39:31 -0000 1.2
--- ScopeAppGlobals.h 7 Dec 2002 07:46:07 -0000 1.2.2.1
***************
*** 4,8 ****
*
* Created by Philip Derrin on Fri Jul 19 2002.
! * Copyright (c) 2002 Philip Derrin. All rights reserved.
*
*/
--- 4,8 ----
*
* Created by Philip Derrin on Fri Jul 19 2002.
! * Copyright (c) 2002 Philip Derrin and Rafal Kolanski. All rights reserved.
*
*/
***************
*** 12,16 ****
--- 12,18 ----
// Strings labelled this way are easy to find using
// a perl script, to auto-generate Localizable.strings
+ #ifdef __APPLE__
#define _(key) [[NSBundle mainBundle] localizedStringForKey:(key) value:key table:nil]
+ #endif
// vim:syn=objc:nocin:si:
|