documentation fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32157 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-02-14 10:57:57 +00:00
parent 08dc11a192
commit 7fa110e2c5
17 changed files with 234 additions and 127 deletions

View file

@ -305,13 +305,16 @@ GS_EXPORT NSString* const NSLoadedClasses;
localized equivalent found. This can be useful during development to check
where a given string in the UI is "coming from".</p>
*/
#ifdef __clang__
- (NSString*) localizedStringForKey: (NSString*)key
value: (NSString*)value
table: (NSString*)tableName
#ifdef __clang__
__attribute__((format_arg(1)))
table: (NSString*)tableName
__attribute__((format_arg(1)));
#else
- (NSString*) localizedStringForKey: (NSString*)key
value: (NSString*)value
table: (NSString*)tableName;
#endif
;
/** Returns the absolute path to the resources directory of the bundle. */
- (NSString*) resourcePath;