Merge branch 'master' into bug_245_record_playback_fixes
[enigma2.git] / lib / python / Screens / Screen.py
index 287847baf93247c1ec01a8e355c47afb993d01e3..7ac7841ca38bc20de7b098f5e2812593cc81ca90 100644 (file)
@@ -1,4 +1,4 @@
-from Tools.Profile import profile, profile_final
+from Tools.Profile import profile
 
 profile("LOAD:GUISkin")
 from Components.GUISkin import GUISkin
@@ -9,6 +9,7 @@ from Components.GUIComponent import GUIComponent
 
 class Screen(dict, GUISkin):
 
+       False, SUSPEND_STOPS, SUSPEND_PAUSES = range(3)
        ALLOW_SUSPEND = False
 
        global_screen = None