diff options
| author | Midas <vdrportal_midas@gmx.de> | 2010-06-06 13:17:11 +0200 |
|---|---|---|
| committer | Midas <vdrportal_midas@gmx.de> | 2010-06-06 13:17:11 +0200 |
| commit | 162820b474550d948c132c7d534e5a1c3f613946 (patch) | |
| tree | 2b034169029bd2fbb2539cf7e5c8642251d1cd7d | |
| parent | 3aa3ccf9680879058746720ffa4989214f86467d (diff) | |
| download | vdr-plugin-block-162820b474550d948c132c7d534e5a1c3f613946.tar.gz vdr-plugin-block-162820b474550d948c132c7d534e5a1c3f613946.tar.bz2 | |
Fixed compiler warning.
| -rw-r--r-- | block.c | 2 | ||||
| -rw-r--r-- | control.h | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -48,7 +48,7 @@ cPluginBlock::cPluginBlock(void): cPlugin(), mStatus(NULL) { - temptitle=""; + temptitle=(char*)""; } cPluginBlock::~cPluginBlock() @@ -14,14 +14,14 @@ class cControlBlock : public cControl { private: static bool mRequested; - int direction; const cChannel *mChannel; const cEvent *mPresent; const cEvent *mFollowing; uint64_t mStart; bool mSwitch; - cSkinDisplayChannel *mOsd; + cSkinDisplayChannel *mOsd; + int direction; protected: virtual void Show(void); |
