mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
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:
parent
f7beb9ce28
commit
ebb9c2eccc
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue