When selecting a folder in tree-view, display the

path rather than the <PBGitTree: 0x...> object.

For example:

"This is a tree with path <PBGitTree: 0x1313000>"

..instead of:

"This is a tree with path Documentation/ReleaseNotes"
This commit is contained in:
dbr
2009-05-21 21:43:03 +01:00
committed by Pieter de Bie
parent 5040bdc1c2
commit 2d0bbecf55
+1 -1
View File
@@ -66,7 +66,7 @@
- (NSString*) contents
{
if (!leaf)
return [NSString stringWithFormat:@"This is a tree with path %@", self];
return [NSString stringWithFormat:@"This is a tree with path %@", [self fullPath]];
NSData* data = nil;