aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/SPObjectAdditions.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPObjectAdditions.m b/Source/SPObjectAdditions.m
index c211809e..32f5f060 100644
--- a/Source/SPObjectAdditions.m
+++ b/Source/SPObjectAdditions.m
@@ -65,11 +65,11 @@ retryDescribe:
id parent = obj;
while(parent) {
[msg appendFormat:@"- %p (class <%@>): %@, id=%@, tag=%ld\n",
- obj,
- [obj className],
- obj,
- [(NSView *)obj identifier],
- [(NSView *)obj tag]];
+ parent,
+ [parent className],
+ parent,
+ [(NSView *)parent identifier],
+ [(NSView *)parent tag]];
parent = [parent superview];
}
[msg appendString:@"\n"];