diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-07 13:35:58 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-07 13:35:58 +0100 |
commit | 94d2bad65725e40239f3958f7c04890ac14281bf (patch) | |
tree | d1aa4ec150c4bdc31a91047fd107a4c08582daab /menu.c | |
parent | 1d2eef218baeb7f5a5cea4308fc99328601cbf64 (diff) | |
download | vdr-94d2bad65725e40239f3958f7c04890ac14281bf.tar.gz vdr-94d2bad65725e40239f3958f7c04890ac14281bf.tar.bz2 |
The file name in the "Timers" menu now shows only the base name of the recording without the folder path
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 2.15 2010/02/06 10:16:15 kls Exp $ + * $Id: menu.c 2.16 2010/02/07 13:31:49 kls Exp $ */ #include "menu.h" @@ -1044,6 +1044,11 @@ void cMenuTimerItem::Set(void) strftime(buffer, sizeof(buffer), "%Y%m%d", &tm_r); day = buffer; } + const char *File = strrchr(timer->File(), FOLDERDELIMCHAR); + if (File) + File++; + else + File = timer->File(); SetText(cString::sprintf("%c\t%d\t%s%s%s\t%02d:%02d\t%02d:%02d\t%s", !(timer->HasFlags(tfActive)) ? ' ' : timer->FirstDay() ? '!' : timer->Recording() ? '#' : '>', timer->Channel()->Number(), @@ -1054,7 +1059,7 @@ void cMenuTimerItem::Set(void) timer->Start() % 100, timer->Stop() / 100, timer->Stop() % 100, - timer->File())); + File)); } // --- cMenuTimers ----------------------------------------------------------- |