From 7579ae7495f580bfa86f4216ef15811f54588c5a Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 2 Nov 2007 01:54:54 +0000 Subject: split Misc Converter/Source into RecordState and TunerInfo Source / Converter add deprecation Warnings for some old InfoBar Components (Nim_A, NimB, NimA_Active, NimB_Active, BlinkingPoint) --- lib/python/Components/GUISkin.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/python/Components/GUISkin.py') diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py index 39499c77..ce4d397d 100644 --- a/lib/python/Components/GUISkin.py +++ b/lib/python/Components/GUISkin.py @@ -20,7 +20,12 @@ class GUISkin: val = self[key] if isinstance(val, GUIComponent): val.GUIcreate(parent) - if not val.applySkin(desktop): + depr = val.deprecationInfo + if val.applySkin(desktop): + if depr: + print "WARNING: OBSOLETE COMPONENT '%s' USED IN SKIN. USE '%s' INSTEAD!" % (key, depr[0]) + print "OBSOLETE COMPONENT WILL BE REMOVED %s, PLEASE UPDATE!" % (depr[1]) + elif not depr: print "warning, skin is missing element", key, "in", self for w in self.additionalWidgets: -- cgit v1.2.3