Skip to content

Commit

Permalink
Minor modifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacsv committed Jul 24, 2020
1 parent f589b1a commit b2190d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Sources/MacOSAppSupport/MAS_NodeEditorNSViewControl.mm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ - (id) initWithFrame : (NSRect) frame
return self;
}

-(void) setNodeEditorControl : (MAS::NodeEditorNSViewControl*) newNodeEditorControl
- (void) setNodeEditorControl : (MAS::NodeEditorNSViewControl*) newNodeEditorControl
{
nodeEditorControl = newNodeEditorControl;
}
Expand Down
8 changes: 4 additions & 4 deletions Sources/MacOSEmbeddingDemo/Application.mm
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ - (id) init
return self;
}

-(void) setUIEnvironment : (AppNodeUIEnvironment*) newUIEnvironment
- (void) setUIEnvironment : (AppNodeUIEnvironment*) newUIEnvironment
{
uiEnvironment = newUIEnvironment;
}

-(void) windowDidLoad
- (void) windowDidLoad
{

}

-(void) windowWillClose : (NSNotification*) notification
- (void) windowWillClose : (NSNotification*) notification
{
#pragma unused (notification)
[NSApp terminate:self];
}

-(void) windowDidResize:(NSNotification *) notification
- (void) windowDidResize : (NSNotification *) notification
{
#pragma unused (notification)
NSRect clientRect = [[[self window] contentView] frame];
Expand Down

0 comments on commit b2190d5

Please sign in to comment.