From bd3dcd3085835ca3d5180331eb3c304689a53d68 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Fri, 30 Jul 1999 05:32:17 +0000 Subject: [PATCH] Fixed mistake I made at some point - file name/type pasteboard type prefixes should end ':', not ': ' git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4674 72102866-910b-0410-8b05-ffd578937521 --- Source/NSPasteboard.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/NSPasteboard.m b/Source/NSPasteboard.m index 1794863bb..b748ec7a9 100644 --- a/Source/NSPasteboard.m +++ b/Source/NSPasteboard.m @@ -788,8 +788,8 @@ static NSMapTable *mimeMap = NULL; @end -static NSString* contentsPrefix = @"NSTypedFileContentsPboardType: "; -static NSString* namePrefix = @"NSTypedFilenamesPboardType: "; +static NSString* contentsPrefix = @"NSTypedFileContentsPboardType:"; +static NSString* namePrefix = @"NSTypedFilenamesPboardType:"; NSString* NSCreateFileContentsPboardType(NSString *fileType)