Notification support in TaskView
[enigma2.git] / lib / python / Components / Converter / ConditionalShowHide.py
index 50e8b1a8dee879f905e60354b1b96db0de071a1c..251e4b90db28cb1ba7f999d0776d78167ea7616f 100644 (file)
@@ -10,7 +10,7 @@ class ConditionalShowHide(Converter, object):
                if self.blink:
                        self.blinktime = 500
                        self.timer = eTimer()
-                       self.timer.timeout.get().append(self.blinkFunc)
+                       self.timer.callback.append(self.blinkFunc)
                else:
                        self.timer = None
 
@@ -61,4 +61,4 @@ class ConditionalShowHide(Converter, object):
 
        def destroy(self):
                if self.timer:
-                       self.timer.timeout.get().remove(self.blinkFunc)
+                       self.timer.callback.remove(self.blinkFunc)