diff options
author | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
commit | e0de96fc7168daeaf414fb6196e08969468427d2 (patch) | |
tree | de7f2dfb83796a7c77e5600a23b8b6b26f284796 /loader.c | |
parent | 6094765d94e4caaf0813039dff826b731f277753 (diff) | |
download | vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.gz vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.bz2 |
- fixed Timebar which sometimes displayed something beyond 100%v0.0.2
- fixed scrolling in EPG detail display
- added "MenuEventEndTime", "MenuEventVPSTime" and "MenuEventDate"
- added "DateTimeF" and "MenuEventDateTimeF" for free formattable dates
- added parameter format that holds the format string for the above items
- implemented setup menu to flush image cache
Diffstat (limited to 'loader.c')
-rw-r--r-- | loader.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ /* - * $Id: loader.c,v 1.8 2004/06/05 16:52:44 lordjaxom Exp $ + * $Id: loader.c,v 1.9 2004/06/07 18:23:11 lordjaxom Exp $ */ #include "loader.h" @@ -74,21 +74,21 @@ cText2SkinLoader::~cText2SkinLoader() { cSkinDisplayChannel *cText2SkinLoader::DisplayChannel(bool WithInfo) { Dprintf("WithInfo: %d\n", WithInfo); - return new cText2SkinDisplayChannel(mData, mI18n, mTheme, WithInfo); + return new cText2SkinDisplayChannel(this, WithInfo); } cSkinDisplayMenu *cText2SkinLoader::DisplayMenu(void) { - return new cText2SkinDisplayMenu(mData, mI18n, mTheme); + return new cText2SkinDisplayMenu(this); } cSkinDisplayVolume *cText2SkinLoader::DisplayVolume(void) { - return new cText2SkinDisplayVolume(mData, mI18n, mTheme); + return new cText2SkinDisplayVolume(this); } cSkinDisplayReplay *cText2SkinLoader::DisplayReplay(bool ModeOnly) { - return new cText2SkinDisplayReplay(mData, mI18n, mTheme, ModeOnly); + return new cText2SkinDisplayReplay(this, ModeOnly); } cSkinDisplayMessage *cText2SkinLoader::DisplayMessage(void) { - return new cText2SkinDisplayMessage(mData, mI18n, mTheme); + return new cText2SkinDisplayMessage(this); } |