aboutsummaryrefslogtreecommitdiff
path: root/skin.py
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-29 14:54:36 +0200
committerAndreas Oberritter <obi@opendreambox.org>2010-11-16 17:15:38 +0100
commit059c9a03c8cc02b0c595e3a5599be04dc157f725 (patch)
tree8ce10b7cb512ab1e1b49f4e10562aa5d83c433c0 /skin.py
parente8164a09377e89aeb0c208c12b979811d5bc33fe (diff)
downloadenigma2-059c9a03c8cc02b0c595e3a5599be04dc157f725.tar.gz
enigma2-059c9a03c8cc02b0c595e3a5599be04dc157f725.zip
Add abstract class gMainDC as an interface for gFBDC and gSDLDC
Diffstat (limited to 'skin.py')
-rwxr-xr-xskin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/skin.py b/skin.py
index b490f739..19da2036 100755
--- a/skin.py
+++ b/skin.py
@@ -284,8 +284,8 @@ def loadSingleSkinData(desktop, skin, path_prefix):
else:
bpp = 32
#print "Resolution:", xres,yres,bpp
- from enigma import gFBDC
- gFBDC.getInstance().setResolution(xres, yres)
+ from enigma import gMainDC
+ gMainDC.getInstance().setResolution(xres, yres)
desktop.resize(eSize(xres, yres))
if bpp != 32:
# load palette (not yet implemented)