remove debug
[enigma2.git] / lib / gui / elistbox.cpp
index 747733d318f572f3ad49a22972fe14693823b120..09d5ec2a1c25eeacaf51e0cab4b934afd3751409 100644 (file)
@@ -159,49 +159,37 @@ void eListbox::moveSelection(int dir)
        
        if (m_content->cursorValid() && !m_content->currentCursorSelectable())
        {
-               eDebug("position not selectable");
                        /* ok, our cursor position is valid (i.e. in list), but not selectable. */
                        
                        /* when moving up, continue until we found a valid position. */
                if ((dir == moveUp) || (dir == pageDown))
                {
-                       eDebug("moving up");
                        while (m_content->cursorGet())
                        {
-                               eDebug("tick");
                                m_content->cursorMove(-1);
                                if (m_content->currentCursorSelectable())
                                {
-                                       eDebug("now ok");
                                        break;
                                }
                        }
                } else
                {
-                       eDebug("moving down");
+                               /* else move down */
                        while (m_content->cursorValid())
                        {
-                               eDebug("TICK");
                                m_content->cursorMove(+1);
                                if (m_content->currentCursorSelectable())
                                {
-                                       eDebug("NOW ok");
                                        break;
                                }
                        }
                        
                        if (!m_content->cursorValid())
-                       {
-                               eDebug("not valid (i.e.: end)");
                                m_content->cursorMove(-1);
-                       }
                }
                
                if (!m_content->currentCursorSelectable())
-               {
-                       eDebug("can't move!");
                        m_content->cursorSet(oldsel);
-               }
        }
        
                /* note that we could be on an invalid cursor position, but we don't