From: ghost Date: Tue, 2 Nov 2010 11:29:16 +0000 (+0100) Subject: Merge branch 'bug_530_add_dm800se_support' into experimental X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=e246e0ded446974b388f1e819bdbdb446ae4429f;hp=728b14cc9eeac4ff583cbc4dc5cefeb04b3b9ff3 Merge branch 'bug_530_add_dm800se_support' into experimental --- diff --git a/data/skin.xml b/data/skin.xml index 868fbc4..b4b6cbc 100755 --- a/data/skin.xml +++ b/data/skin.xml @@ -46,35 +46,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/skin_default.xml b/data/skin_default.xml index e5b3132..272fdcf 100755 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -1,4 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/gui/ewindowstyle.cpp b/lib/gui/ewindowstyle.cpp index 68a74e0..0ecdc2a 100644 --- a/lib/gui/ewindowstyle.cpp +++ b/lib/gui/ewindowstyle.cpp @@ -28,7 +28,9 @@ eWindowStyleManager::~eWindowStyleManager() void eWindowStyleManager::getStyle(int style_id, ePtr &style) { - style = m_current_style[style_id]; + std::map >::iterator it = m_current_style.find(style_id); + ASSERT(it != m_current_style.end()); + style = it->second; } void eWindowStyleManager::setStyle(int style_id, eWindowStyle *style)