diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-25 15:43:11 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-25 15:43:11 +0100 |
commit | 926e83529dc2c6fae98d192e86a7359fb5179251 (patch) | |
tree | 96d8a1f5b6dd0e16f9becec434d5d5a350e566fd /menuitems.c | |
parent | 73b502bedd75ded8365dba5471e73e24ecf3fea8 (diff) | |
download | vdr-926e83529dc2c6fae98d192e86a7359fb5179251.tar.gz vdr-926e83529dc2c6fae98d192e86a7359fb5179251.tar.bz2 |
Added a call to cStatus::MsgOsdCurrentItem() to cMenuEditItem::SetValue()1.3.3
Diffstat (limited to 'menuitems.c')
-rw-r--r-- | menuitems.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/menuitems.c b/menuitems.c index d680ff9c..e6641541 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.13 2003/04/12 09:21:33 kls Exp $ + * $Id: menuitems.c 1.14 2004/01/25 15:40:55 kls Exp $ */ #include "menuitems.h" @@ -37,6 +37,7 @@ void cMenuEditItem::SetValue(const char *Value) asprintf(&buffer, "%s:\t%s", name, value); SetText(buffer, false); Display(); + cStatus::MsgOsdCurrentItem(buffer); } // --- cMenuEditIntItem ------------------------------------------------------ |