From f059ffb24ebd78af9f1d3f74393604a8b43838c4 Mon Sep 17 00:00:00 2001 From: Matthias Neeracher Date: Sun, 29 Oct 2006 02:49:26 +0000 Subject: [PATCH] Don't open untitled --- Sources/VLAppController.mm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/VLAppController.mm b/Sources/VLAppController.mm index 750299e..6e301c5 100644 --- a/Sources/VLAppController.mm +++ b/Sources/VLAppController.mm @@ -181,4 +181,9 @@ } } +- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender +{ + return NO; +} + @end