Skip to content

Commit

Permalink
Shut up some warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
uliwitness committed Feb 28, 2011
1 parent a516cc8 commit 65bfc40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UKLineSizeView.m
Expand Up @@ -13,7 +13,7 @@ @implementation UKLineSizeView


-(id) initWithFrame: (NSRect)frame -(id) initWithFrame: (NSRect)frame
{ {
if( self = [super initWithFrame:frame] ) if(( self = [super initWithFrame:frame] ))
{ {
floatValue = 1.0; floatValue = 1.0;
maxValue = 20.0; maxValue = 20.0;
Expand Down
2 changes: 1 addition & 1 deletion UKPaintView.m
Expand Up @@ -562,7 +562,7 @@ -(IBAction) redo: (id)sender
} }




-(BOOL) validateMenuItem: (id <NSMenuItem>)menuItem -(BOOL) validateMenuItem: (NSMenuItem*)menuItem
{ {
if( [menuItem action] == @selector(undo:) ) if( [menuItem action] == @selector(undo:) )
return [undoManager canUndo]; return [undoManager canUndo];
Expand Down

0 comments on commit 65bfc40

Please sign in to comment.