Skip to content

Commit

Permalink
Fix for CPPopUpButton being broken in nib2cib.
Browse files Browse the repository at this point in the history
Reviewed by me.
  • Loading branch information
Francisco Ryan Tolmasky I committed May 21, 2009
1 parent 0b24bf8 commit fff4049
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Tools/nib2cib/NSButton.j
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,16 @@ _CPButtonBezelStyleHeights[CPHUDBezelStyle] = 20;
return self;
}

- (BOOL)NS_isCheckBox
{
return NO;
}

- (BOOL)NS_isRadio
{
return NO;
}

@end

@implementation NSButton : CPButton
Expand Down

0 comments on commit fff4049

Please sign in to comment.