OSDN Git Service

HMUITestWindowControllerは別個にon/off出来るようにした
authormasakih <masakih@users.sourceforge.jp>
Fri, 6 Mar 2015 12:50:44 +0000 (21:50 +0900)
committermasakih <masakih@users.sourceforge.jp>
Fri, 6 Mar 2015 12:50:44 +0000 (21:50 +0900)
KCD/HMAppDelegate.m

index 655a87a..0f81775 100644 (file)
@@ -46,6 +46,9 @@
 #ifdef DEBUG
 @property (strong) HMShipWindowController *shipWindowController;
 @property (strong) HMShipMasterDetailWindowController *shipMDWindowController;
+#endif
+
+#ifdef UI_TEST
 @property (strong) HMUITestWindowController *uiTestWindowController;
 #endif
 #if ENABLE_JSON_LOG
        
        self.shipMDWindowController = [HMShipMasterDetailWindowController new];
        [self.shipMDWindowController showWindow:nil];
-       
+#endif
+#ifdef UI_TEST
        self.uiTestWindowController = [HMUITestWindowController new];
        [self.uiTestWindowController showWindow:nil];
 #endif