Skip to content

Commit b2190d5

Browse files
committed
Minor modifications.
1 parent f589b1a commit b2190d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Sources/MacOSAppSupport/MAS_NodeEditorNSViewControl.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ - (id) initWithFrame : (NSRect) frame
2626
return self;
2727
}
2828

29-
-(void) setNodeEditorControl : (MAS::NodeEditorNSViewControl*) newNodeEditorControl
29+
- (void) setNodeEditorControl : (MAS::NodeEditorNSViewControl*) newNodeEditorControl
3030
{
3131
nodeEditorControl = newNodeEditorControl;
3232
}

Sources/MacOSEmbeddingDemo/Application.mm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ - (id) init
2525
return self;
2626
}
2727

28-
-(void) setUIEnvironment : (AppNodeUIEnvironment*) newUIEnvironment
28+
- (void) setUIEnvironment : (AppNodeUIEnvironment*) newUIEnvironment
2929
{
3030
uiEnvironment = newUIEnvironment;
3131
}
3232

33-
-(void) windowDidLoad
33+
- (void) windowDidLoad
3434
{
3535

3636
}
3737

38-
-(void) windowWillClose : (NSNotification*) notification
38+
- (void) windowWillClose : (NSNotification*) notification
3939
{
4040
#pragma unused (notification)
4141
[NSApp terminate:self];
4242
}
4343

44-
-(void) windowDidResize:(NSNotification *) notification
44+
- (void) windowDidResize : (NSNotification *) notification
4545
{
4646
#pragma unused (notification)
4747
NSRect clientRect = [[[self window] contentView] frame];

0 commit comments

Comments
 (0)