diff options
author | Abhi Beckert <abhi@abhibeckert.com> | 2014-12-02 05:29:03 +1000 |
---|---|---|
committer | Abhi Beckert <abhi@abhibeckert.com> | 2014-12-02 05:29:03 +1000 |
commit | b5e972f4504043dfb9c358e272e93fb59ae2127f (patch) | |
tree | f1a22749a17e6d01cfb928fbbab00f41acf38be4 /Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m | |
parent | 1af7e143385e716b5b0154854dda22a9c270ccad (diff) | |
parent | 00432038fa8a4727322d8eae25c01fad510b899c (diff) | |
download | sequelpro-b5e972f4504043dfb9c358e272e93fb59ae2127f.tar.gz sequelpro-b5e972f4504043dfb9c358e272e93fb59ae2127f.tar.bz2 sequelpro-b5e972f4504043dfb9c358e272e93fb59ae2127f.zip |
Merge pull request #2030 from origsun/master
Remove a private API in PSMTabBarCell
Diffstat (limited to 'Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m')
-rw-r--r-- | Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m b/Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m index dcf99545..882c1741 100644 --- a/Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m +++ b/Frameworks/PSMTabBar/Styles/PSMUnifiedTabStyle.m @@ -312,7 +312,7 @@ { NSRect cellFrame = [cell frame]; - NSToolbar *toolbar = [[[cell controlView] window] toolbar]; + NSToolbar *toolbar = [[[cell customControlView] window] toolbar]; BOOL showsBaselineSeparator = (toolbar && [toolbar respondsToSelector:@selector(showsBaselineSeparator)] && [toolbar showsBaselineSeparator]); if (!showsBaselineSeparator) { cellFrame.origin.y += 1.0; @@ -409,7 +409,7 @@ } } - [self drawInteriorWithTabCell:cell inView:[cell controlView]]; + [self drawInteriorWithTabCell:cell inView:[cell customControlView]]; } |