UI/UserInterface.py

branch
BgService
changeset 3173
1fb284abe46e
parent 3159
02cb2adb4868
child 3241
957673fc463a
--- a/UI/UserInterface.py	Wed Jan 01 22:59:10 2014 +0100
+++ b/UI/UserInterface.py	Sat Jan 04 22:12:42 2014 +0100
@@ -205,6 +205,9 @@
         # Create the background service object
         from Utilities.BackgroundService import BackgroundService
         self.backgroundService = BackgroundService()
+        # And initialize the standard services
+        from Utilities.InternalServices import InternalServices
+        self.internalServices = InternalServices(self.backgroundService)
         
         # Generate an empty project object and multi project object
         from Project.Project import Project
@@ -455,6 +458,7 @@
         e5App().registerObject("DebugUI", self.debuggerUI)
         e5App().registerObject("DebugServer", debugServer)
         e5App().registerObject("BackgroundService", self.backgroundService)
+        e5App().registerObject("InternalServices", self.internalServices)
         e5App().registerObject("ViewManager", self.viewmanager)
         e5App().registerObject("Project", self.project)
         e5App().registerObject("ProjectBrowser", self.projectBrowser)

eric ide

mercurial