mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 00:20:48 +00:00
Fix error in format string
This commit is contained in:
parent
31d06161d5
commit
36343b81b1
1 changed files with 4 additions and 4 deletions
|
@ -866,10 +866,10 @@
|
|||
|
||||
- (NSString*) description
|
||||
{
|
||||
return [NSString stringWithFormat:
|
||||
@"%@ - sourceID: %@: maxID: %@: objectRecords: %@: flattenedProperties: %@: connectionRecords: %@: ",
|
||||
[super description], sourceID, maxID, objectRecords,
|
||||
flattenedProperties, connectionRecords];
|
||||
return [NSString stringWithFormat: @"%@ - sourceID: %@: maxID: %d:"
|
||||
@" objectRecords: %@: flattenedProperties: %@: connectionRecords: %@: ",
|
||||
[super description], sourceID, maxID,
|
||||
objectRecords, flattenedProperties, connectionRecords];
|
||||
}
|
||||
|
||||
- (NSEnumerator*) connectionRecordEnumerator
|
||||
|
|
Loading…
Reference in a new issue