*** empty log message ***

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2354 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1997-07-08 01:26:32 +00:00
parent e0396854b6
commit b72693fb4b

View file

@ -136,6 +136,30 @@ NSArray *printerTypesAvailable = nil;
extern NSString* NSPPDParseException;
#ifndef LIB_FOUNDATION_LIBRARY
static void __NSRetainNothing(void *table, const void *anObject)
{
}
static void __NSReleaseNothing(void *table, void *anObject)
{
}
static NSString* __NSDescribeObjects(void *table, const void *anObject)
{
return [(NSObject*)anObject description];
}
static const NSMapTableValueCallBacks NSNonRetainedObjectMapValueCallBacks = {
(void (*)(NSMapTable *, const void *))__NSRetainNothing,
(void (*)(NSMapTable *, void *))__NSReleaseNothing,
(NSString *(*)(NSMapTable *, const void *))__NSDescribeObjects
};
#endif /* LIB_FOUNDATION_LIBRARY */
@interface NSPrinter (private)
+ allocMaps;
- initWithPPD:(NSString *)PPDstring