remove local debug stuff
[enigma2.git] / lib / gui / elistbox.cpp
index aba7443227d23a83598643ac21cc445f7fbe941c..a5d18e6b8c461e85c05496cc23a604657a7575a9 100644 (file)
@@ -4,19 +4,14 @@
 #include <lib/actions/action.h>
 
 eListbox::eListbox(eWidget *parent)
-       :eWidget(parent), m_prev_scrollbar_page(-1), m_content_changed(false)
-       , m_scrollbar_mode(showNever), m_scrollbar(NULL)
+       :eWidget(parent), m_scrollbar_mode(showNever), m_prev_scrollbar_page(-1)
+       ,m_content_changed(false), m_top(0), m_selected(0), m_itemheight(25)
+       ,m_items_per_page(0), m_selection_enabled(1), m_scrollbar(NULL)
 {
        setContent(new eListboxStringContent());
 
        ePtr<eActionMap> ptr;
        eActionMap::getInstance(ptr);
-       
-       m_itemheight = 25;
-       m_selection_enabled = 1;
-       
-       m_items_per_page = 0;
-       
        ptr->bindAction("ListboxActions", 0, 0, this);
 }