diff options
author | Xu Jie <xujie04@gmail.com> | 2014-12-01 17:53:24 +0800 |
---|---|---|
committer | Xu Jie <xujie04@gmail.com> | 2014-12-01 17:53:24 +0800 |
commit | 5195ce158690ef1fb39869a6727c3de4b110b496 (patch) | |
tree | 522616ea735cf79c3af15f7cad6226d19ab384ec /Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m | |
parent | 1af7e143385e716b5b0154854dda22a9c270ccad (diff) | |
download | sequelpro-5195ce158690ef1fb39869a6727c3de4b110b496.tar.gz sequelpro-5195ce158690ef1fb39869a6727c3de4b110b496.tar.bz2 sequelpro-5195ce158690ef1fb39869a6727c3de4b110b496.zip |
Remove a private API in PSMTabBarCell
Directly assigning to _controlView of a NSActionCell is private and not allowed by Mac App Store.
An _customControlView is used to replace _controlView in PSMTabBarCell to avoid direct assigning to _controlView.
This should be the last private API to remove before going to Mac App Store.
Diffstat (limited to 'Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m')
-rw-r--r-- | Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m b/Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m index 44f5b098..d81458f1 100644 --- a/Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m +++ b/Frameworks/PSMTabBar/Styles/PSMCardTabStyle.m @@ -423,7 +423,7 @@ } } - [self drawInteriorWithTabCell:cell inView:[cell controlView]]; + [self drawInteriorWithTabCell:cell inView:[cell customControlView]]; } @@ -433,7 +433,7 @@ BOOL showsBaselineSeparator = NO; /* - NSToolbar *toolbar = [[[cell controlView] window] toolbar]; + NSToolbar *toolbar = [[[cell customControlView] window] toolbar]; BOOL showsBaselineSeparator = (toolbar && [toolbar respondsToSelector:@selector(showsBaselineSeparator)] && [toolbar showsBaselineSeparator]); */ if (!showsBaselineSeparator) { |