diff options
author | stuconnolly <stuart02@gmail.com> | 2011-03-01 21:09:08 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-03-01 21:09:08 +0000 |
commit | 64919b03fa59c8d93c81a8e3893934c04a3cac91 (patch) | |
tree | a73f3db993975d4fb6963730450bae0655b12a09 /Frameworks/PSMTabBar | |
parent | cd09dcd69813400b098b9f019a558efb11e6c8b2 (diff) | |
download | sequelpro-64919b03fa59c8d93c81a8e3893934c04a3cac91.tar.gz sequelpro-64919b03fa59c8d93c81a8e3893934c04a3cac91.tar.bz2 sequelpro-64919b03fa59c8d93c81a8e3893934c04a3cac91.zip |
Fix compiler warnings.
Diffstat (limited to 'Frameworks/PSMTabBar')
-rw-r--r-- | Frameworks/PSMTabBar/PSMOverflowPopUpButton.m | 2 | ||||
-rw-r--r-- | Frameworks/PSMTabBar/PSMTabBarCell.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PSMTabBar/PSMOverflowPopUpButton.m b/Frameworks/PSMTabBar/PSMOverflowPopUpButton.m index cc96b910..bef8b4ff 100644 --- a/Frameworks/PSMTabBar/PSMOverflowPopUpButton.m +++ b/Frameworks/PSMTabBar/PSMOverflowPopUpButton.m @@ -16,7 +16,7 @@ - (id)initWithFrame:(NSRect)frameRect pullsDown:(BOOL)flag { - if (self = [super initWithFrame:frameRect pullsDown:YES]) { + if ((self = [super initWithFrame:frameRect pullsDown:YES])) { [self setBezelStyle:NSRegularSquareBezelStyle]; [self setBordered:NO]; [self setTitle:@""]; diff --git a/Frameworks/PSMTabBar/PSMTabBarCell.m b/Frameworks/PSMTabBar/PSMTabBarCell.m index 7ecaa183..5d585359 100644 --- a/Frameworks/PSMTabBar/PSMTabBarCell.m +++ b/Frameworks/PSMTabBar/PSMTabBarCell.m @@ -348,7 +348,7 @@ { if (_isPlaceholder) { if (![_controlView usesSafariStyleDragging]) { - [[NSColor colorWithCalibratedWhite:0.0 alpha:0.2] set]; + [[NSColor colorWithCalibratedWhite:0.0 alpha:0.2f] set]; NSRectFillUsingOperation(cellFrame, NSCompositeSourceAtop); } return; |