From: Felix Domke Date: Mon, 27 Feb 2006 20:36:45 +0000 (+0000) Subject: remove debug X-Git-Tag: 2.6.0~3966 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7f07fe05cb022af426e84846a5367f3074e6bb8e?ds=inline remove debug --- diff --git a/lib/gui/elistbox.cpp b/lib/gui/elistbox.cpp index 747733d3..09d5ec2a 100644 --- a/lib/gui/elistbox.cpp +++ b/lib/gui/elistbox.cpp @@ -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