Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/Shell.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-02-25 00:07:05 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-02-25 00:07:05 (GMT)
commit89aa65d0f6ae70e928c8b3db6df921cc6205df51 (patch)
tree8480036a5fd9d312d77b4af47b72292c534cd4f4 /shell/view/Shell.py
parentcb6a808832c456840c043f4b06ea55e7b64f2618 (diff)
Move hardwaremanager out of the view to his own module
Diffstat (limited to 'shell/view/Shell.py')
-rw-r--r--shell/view/Shell.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/shell/view/Shell.py b/shell/view/Shell.py
index 812698f..c032831 100644
--- a/shell/view/Shell.py
+++ b/shell/view/Shell.py
@@ -26,8 +26,6 @@ from view.ActivityHost import ActivityHost
from sugar.activity import activityfactory
from view.frame.frame import Frame
from view.keyhandler import KeyHandler
-from view.hardwaremanager import HardwareManager
-from _sugar import AudioManager
import sugar
class Shell(gobject.GObject):
@@ -40,9 +38,6 @@ class Shell(gobject.GObject):
self._current_host = None
self._screen_rotation = 0
- self._hw_manager = HardwareManager()
- self._audio_manager = AudioManager()
-
self._home_window = HomeWindow(self)
self._home_window.show()
self.set_zoom_level(sugar.ZOOM_HOME)
@@ -88,12 +83,6 @@ class Shell(gobject.GObject):
if self._current_host:
self._current_host.set_active(True)
- def get_hardware_manager(self):
- return self._hw_manager
-
- def get_audio_manager(self):
- return self._audio_manager
-
def get_model(self):
return self._model