diff options
author | Andreas Brachold <vdr07@deltab.de> | 2011-03-19 10:10:39 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2011-03-19 10:10:39 +0000 |
commit | 0068f2a31c94d2270063cf9993d0de8535675a57 (patch) | |
tree | bcb436fa76f912672307f8a90c44b72d516a98ba /list.h | |
parent | 1a8054a7e26149796a310266b159247997ee9805 (diff) | |
download | vdr-plugin-image-0068f2a31c94d2270063cf9993d0de8535675a57.tar.gz vdr-plugin-image-0068f2a31c94d2270063cf9993d0de8535675a57.tar.bz2 |
Adjust to compile plugin with VDR >= 1.7.17
Diffstat (limited to 'list.h')
-rw-r--r-- | list.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,7 +12,7 @@ #define ___IMAGE_LIST_H class cSlideShow; -class cImage; +class cImageData; class cFileSource; class cActivSlideShow @@ -24,18 +24,18 @@ class cActivSlideShow /** Total number of Images in slide */ unsigned int m_nTotalImages; /** Reference to current Image of this player */ - cImage *m_pCurImage; + cImageData *m_pCurImage; public: cActivSlideShow(); void Assign(cSlideShow *pCurSlideShow); void Shutdown(void); cSlideShow *SlideShow(void); - cImage* GetImage(); + cImageData* GetImage(); bool PrevImage(int nOffset); bool GotoImage(unsigned int nNewPictureIndex); bool NextImage(int nOffset); - int GetJumpNames(int nOffset,cImage* pImage[],const unsigned int nMAX_BILDER); + int GetJumpNames(int nOffset,cImageData* pImage[],const unsigned int nMAX_BILDER); void Remove(cFileSource* src); |