mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 05:57:04 +00:00
Previously, when calling the method orderOut: on the full platform window of a CPPlatformWindow, cappuccino didn't close the parent CPPlatformWindow. When he does, this only works if the parent platformWindow is not the primary platform. Test app in Tests/Manual/CPPlatformWindow/
19 lines
306 B
Plaintext
19 lines
306 B
Plaintext
/*
|
|
* AppController.j
|
|
* CPPlatformWindow
|
|
*
|
|
* Created by You on October 30, 2014.
|
|
* Copyright 2014, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|