summaryrefslogtreecommitdiff
path: root/osdbase.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-08 11:44:37 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-08 11:44:37 +0100
commit2d863532cc547e0368ee0c90875cae35b70db089 (patch)
tree774ef244b22e30dadc1135af814b264b44488e04 /osdbase.c
parentdcda6676b3e6912f9d0b57fb71db83ce64eaf4ea (diff)
downloadvdr-2d863532cc547e0368ee0c90875cae35b70db089.tar.gz
vdr-2d863532cc547e0368ee0c90875cae35b70db089.tar.bz2
Cleaned up some trailing white space
Diffstat (limited to 'osdbase.c')
-rw-r--r--osdbase.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/osdbase.c b/osdbase.c
index 996dac9b..d81c33b9 100644
--- a/osdbase.c
+++ b/osdbase.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: osdbase.c 1.27 2006/01/05 15:35:06 kls Exp $
+ * $Id: osdbase.c 1.28 2006/01/08 11:40:02 kls Exp $
*/
#include "osdbase.h"
@@ -161,10 +161,10 @@ void cOsdMenu::Del(int Index)
{
cList<cOsdItem>::Del(Get(Index));
int count = Count();
- while (current < count && !SelectableItem(current))
+ while (current < count && !SelectableItem(current))
current++;
if (current == count) {
- while (current > 0 && !SelectableItem(current))
+ while (current > 0 && !SelectableItem(current))
current--;
}
if (Index == first && first > 0)
@@ -371,7 +371,7 @@ void cOsdMenu::PageUp(void)
CursorUp();
}
-void cOsdMenu::PageDown(void)
+void cOsdMenu::PageDown(void)
{
int oldCurrent = current;
int oldFirst = first;