Skip to content

Commit

Permalink
fix title of debugView when includeSuperclasses is false
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick-Kladek authored and Patrick-Kladek committed Jun 15, 2017
1 parent c7fdef8 commit 760bac3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Shared/CocoaDebugView.m
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ + (instancetype)debugViewWithAllPropertiesOfObject:(NSObject *)obj includeSuperc
if (include) {
[view setTitle:[view traceSuperClassesOfObject:obj]];
} else {
[view setTitle:NSStringFromClass([self class])];
[view setTitle:NSStringFromClass([obj class])];
}

[view addAllPropertiesFromObject:obj includeSuperclasses:include];
Expand Down
2 changes: 1 addition & 1 deletion macOS/CocoaDebugKit/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1409</string>
<string>1410</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2015 Patrick Kladek. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion macOS/Test Application/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>634</string>
<string>635</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>
Expand Down

0 comments on commit 760bac3

Please sign in to comment.