summaryrefslogtreecommitdiff
path: root/menuitems.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-06-16 13:26:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-06-16 13:26:00 +0200
commit3ab746babd6d879f05b4cbc76662c65cf4146397 (patch)
tree0312baea9a9cef76689a86d6e74ffed68320e1cc /menuitems.c
parenta4bfddd2f995ad03409de005bc3015437c10aa06 (diff)
downloadvdr-3ab746babd6d879f05b4cbc76662c65cf4146397.tar.gz
vdr-3ab746babd6d879f05b4cbc76662c65cf4146397.tar.bz2
Changed 'cStatusMonitor' to 'cStatus'1.1.3
Diffstat (limited to 'menuitems.c')
-rw-r--r--menuitems.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/menuitems.c b/menuitems.c
index a66cbc30..6a54a86d 100644
--- a/menuitems.c
+++ b/menuitems.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menuitems.c 1.5 2002/05/19 12:34:33 kls Exp $
+ * $Id: menuitems.c 1.6 2002/06/16 13:23:56 kls Exp $
*/
#include "menuitems.h"
@@ -398,7 +398,7 @@ void cMenuTextItem::Display(int Offset, eDvbColor FgColor, eDvbColor BgColor)
// scroll indicators use inverted color scheme!
if (CanScrollUp()) Interface->Write(x + w - 1, y, "^", bgColor, fgColor);
if (CanScrollDown()) Interface->Write(x + w - 1, y + h - 1, "v", bgColor, fgColor);
- cStatusMonitor::MsgOsdTextItem(text);
+ cStatus::MsgOsdTextItem(text);
}
void cMenuTextItem::ScrollUp(bool Page)
@@ -408,7 +408,7 @@ void cMenuTextItem::ScrollUp(bool Page)
offset = max(offset - (Page ? h : 1), 0);
Display();
}
- cStatusMonitor::MsgOsdTextItem(NULL, true);
+ cStatus::MsgOsdTextItem(NULL, true);
}
void cMenuTextItem::ScrollDown(bool Page)
@@ -418,7 +418,7 @@ void cMenuTextItem::ScrollDown(bool Page)
offset = min(offset + (Page ? h : 1), lines - h);
Display();
}
- cStatusMonitor::MsgOsdTextItem(NULL, false);
+ cStatus::MsgOsdTextItem(NULL, false);
}
eOSState cMenuTextItem::ProcessKey(eKeys Key)