diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2012-12-07 12:00:15 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2012-12-07 12:00:15 +0100 |
commit | b99a359e0956748403f9b64caf45f58c67bb62b9 (patch) | |
tree | de642b61e25e00735b686f855a2f6e9b19f365db | |
parent | 693b589239ad533481e615220f0f18dcf563c569 (diff) | |
download | vdr-plugin-extrecmenu-b99a359e0956748403f9b64caf45f58c67bb62b9.tar.gz vdr-plugin-extrecmenu-b99a359e0956748403f9b64caf45f58c67bb62b9.tar.bz2 |
Always use VDR's cutting feature in VDR >=1.7.32.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | tools.h | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -2,6 +2,7 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- 2012-xx-xx: Version 1.2.3 +- [amair] Always use VDR's cutting feature in VDR >=1.7.32. - [amair] Reduced calls to get the free disk space. - [amair] Use new MBperMinute() function in VDR >=1.7.27. - [amair] Fixed compiling with VDR 1.7.28. @@ -1,3 +1,9 @@ +#ifndef USE_VDR_CUTTER +# if VDRVERSNUM >= 10732 +# define USE_VDR_CUTTER +# endif +#endif + std::string myStrReplace(std::string S,char C1,const char* C2); class SortListItem:public cListObject |