summaryrefslogtreecommitdiff
path: root/timers.cpp
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2015-02-13 23:46:21 +0100
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2015-02-13 23:48:24 +0100
commit6ea279a74a84b13aa72237448c9ed848c8fdcad4 (patch)
treed4a6b12361434f5d73b9073ce8c8d741e5129a90 /timers.cpp
parente95718213bcaaa659b9b40dc54ff33d215bc3cb7 (diff)
downloadvdr-plugin-live-6ea279a74a84b13aa72237448c9ed848c8fdcad4.tar.gz
vdr-plugin-live-6ea279a74a84b13aa72237448c9ed848c8fdcad4.tar.bz2
Removed all conditional compilation based on VDRVERSNUM. The youngest
VDRVERSNUM-check was for 10728. So all VDR versions less or equal 10728 are not supported any more now.
Diffstat (limited to 'timers.cpp')
-rw-r--r--timers.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/timers.cpp b/timers.cpp
index de303d4..3bcbe1b 100644
--- a/timers.cpp
+++ b/timers.cpp
@@ -97,11 +97,7 @@ namespace vdrlive {
string SortedTimers::GetTimerDays(cTimer const& timer)
{
string currentDay = timer.WeekDays() > 0 ?
-#if VDRVERSNUM < 10503
- *cTimer::PrintDay(0, timer.WeekDays()) :
-#else
*cTimer::PrintDay(0, timer.WeekDays(), true) :
-#endif
FormatDateTime(tr("%A, %x"), timer.Day());
return currentDay;
}