mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-09 23:54:20 +00:00
Misc: rename extraneous parenthesizes from return statements.
This commit is contained in:
parent
9c75ef5a61
commit
ae873b1e0d
6 changed files with 20 additions and 15 deletions
|
|
@ -169,7 +169,7 @@
|
|||
-(NSWindow*)window
|
||||
{
|
||||
if (_window != nil)
|
||||
return (_window);
|
||||
return _window;
|
||||
|
||||
NSRect viewRect = NSMakeRect(100.0, 100.0, 100.0 + 1280.0, 100 + 800.0);
|
||||
|
||||
|
|
@ -179,7 +179,7 @@
|
|||
[_window setOpaque:YES];
|
||||
[_window makeKeyAndOrderFront:NSApp];
|
||||
|
||||
return (_window);
|
||||
return _window;
|
||||
}
|
||||
|
||||
-(void)setupMenu
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue