diff options
author | Max <post@wickenrode.com> | 2015-08-10 22:33:02 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-08-10 22:33:02 +0200 |
commit | 0df35b718ca0aee2e23a262821165f7c8705d5d8 (patch) | |
tree | f359a2e23f52fd75a19a5c58035959d2a900a27d /Source | |
parent | c7b5e880003153e599a452151ee1f3a3e40aff4c (diff) | |
download | sequelpro-0df35b718ca0aee2e23a262821165f7c8705d5d8.tar.gz sequelpro-0df35b718ca0aee2e23a262821165f7c8705d5d8.tar.bz2 sequelpro-0df35b718ca0aee2e23a262821165f7c8705d5d8.zip |
Well, if I hadn't made that stupid mistake we'd /might/ have some useful debug info on _scrollViewDidChangeBounds: by now...
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPObjectAdditions.m | 10 |
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"]; |