diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2012-04-04 23:33:34 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2012-04-04 23:33:34 +0300 |
commit | 421d737cabfd96625b708dbad097d070cd69c7d8 (patch) | |
tree | 8ade9df4986ec8083ae4b064f21a21cf61b0eada /status.c | |
parent | b9b2a8725dbd718e792f4faa661df6bfd219ae84 (diff) | |
download | vdr-plugin-text2skin-421d737cabfd96625b708dbad097d070cd69c7d8.tar.gz vdr-plugin-text2skin-421d737cabfd96625b708dbad097d070cd69c7d8.tar.bz2 |
Fix build with VDR 1.7.27.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -314,7 +314,11 @@ cxType cText2SkinStatus::GetTokenData(const txToken &Token) case tReplayDateTime: return mReplay != NULL +#if APIVERSNUM >= 10721 + ? (cxType)TimeType(mReplay->Start(), Token.Attrib.Text) +#else ? (cxType)TimeType(mReplay->start, Token.Attrib.Text) +#endif : (cxType)false; case tReplayShortText: |