fix failure to call super description

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@34748 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2012-02-08 21:55:43 +00:00
parent f7beb9ce28
commit ebb9c2eccc

View file

@ -222,7 +222,8 @@ NSMutableDictionary *pasteboards = nil;
- (NSString*) description
{
return [NSString stringWithFormat: @"PasteboardData for type '%@'", type];
return [NSString stringWithFormat: @"%@ for type '%@'",
[super description], type];
}
- (NSData*) data