Vuo  2.3.2
VuoAppDelegate.m
Go to the documentation of this file.
1 
10 #import "VuoAppDelegate.h"
11 
12 #include "VuoAppSplashWindow.h"
13 #include "module.h"
14 
15 @implementation VuoAppDelegate
16 
20 - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
21 {
22  // Ignore quit requests while the splash window is visible
23  // (since runtime initialization hasn't completed yet, it crashes).
26 
27  return NSTerminateCancel;
28 }
29 
30 @end