Parcourir la source

Initialize userGlobalEntries in -[FLEXManager init]

Ryan Olson il y a 12 ans
Parent
commit
dc5b5b1371
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  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;