Added some missing pasteboard types.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@9939 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
FredKiefer 2001-05-13 21:08:35 +00:00
parent ced7e3c19c
commit 0b37244713
2 changed files with 12 additions and 0 deletions

View file

@ -54,6 +54,12 @@ extern NSString *NSTIFFPboardType;
extern NSString *NSDataLinkPboardType;
extern NSString *NSGeneralPboardType;
#ifndef STRICT_OPENSTEP
extern NSString *NSPDFPboardType;
extern NSString *NSPICTPboardType;
extern NSString *NSURLPboardType;
#endif
//
// Pasteboard Name Globals
//
@ -133,6 +139,9 @@ extern NSString *NSPasteboardCommunicationException;
- (NSFileWrapper *)readFileWrapper;
- (NSString *)stringForType:(NSString *)dataType;
@end
@interface NSObject (NSPasteboardOwner)
//
// Methods Implemented by the Owner
//

View file

@ -199,6 +199,9 @@ NSString *NSRTFDPboardType = @"NSRTFDPboardType";
NSString *NSTIFFPboardType = @"NSTIFFPboardType";
NSString *NSDataLinkPboardType = @"NSDataLinkPboardType";
NSString *NSGeneralPboardType = @"NSGeneralPboardType";
NSString *NSPDFPboardType = @"NSPDFPboardType";
NSString *NSPICTPboardType = @"NSPICTPboardType";
NSString *NSURLPboardType = @"NSURLPboardType";
// Pasteboard Name Globals
NSString *NSDragPboard = @"NSDragPboard";