Procházet zdrojové kódy

Initialize userGlobalEntries in -[FLEXManager init]

Ryan Olson před 12 roky
rodič
revize
dc5b5b1371
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      Classes/Explorer Toolbar/FLEXManager.m

+ 2 - 0
Classes/Explorer Toolbar/FLEXManager.m

@@ -41,6 +41,8 @@
         self.explorerWindow = [[FLEXWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
         self.explorerWindow.eventDelegate = self;
         
+        _userGlobalEntries = [[NSMutableArray alloc] init];
+        
         self.explorerViewController = [[FLEXExplorerViewController alloc] init];
         self.explorerViewController.delegate = self;
         self.explorerWindow.rootViewController = self.explorerViewController;