diff options
author | louis <louis.braun@gmx.de> | 2013-07-23 20:06:57 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-07-23 20:06:57 +0200 |
commit | c545f6b4cfc4c8fe604eb216fb1d8c86550e74ca (patch) | |
tree | 643e40026f138a53811bd7e3c0b97a113dfb146c /recmenus.c | |
parent | a17b78838e9b664c859bfbd637ab86aa0e2a1fc8 (diff) | |
download | vdr-plugin-tvguide-c545f6b4cfc4c8fe604eb216fb1d8c86550e74ca.tar.gz vdr-plugin-tvguide-c545f6b4cfc4c8fe604eb216fb1d8c86550e74ca.tar.bz2 |
Version 1.0.0
Diffstat (limited to 'recmenus.c')
-rw-r--r-- | recmenus.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -212,7 +212,7 @@ public: if (numConflicts == 1) { text = cString::sprintf("%s %s %s", tr("One"), tr("Timer Conflict"), tr("detected")); } else { - text = cString::sprintf("%d %s %s", conflicts.size(), tr("Timer Conflicts"), tr("detected")); + text = cString::sprintf("%d %s %s", (int)conflicts.size(), tr("Timer Conflicts"), tr("detected")); } cRecMenuItemInfo *infoItem = new cRecMenuItemInfo(*text); @@ -1027,4 +1027,4 @@ public: }; virtual ~cRecMenuRecordingSearchNotFound(void) {}; -};
\ No newline at end of file +}; |