summaryrefslogtreecommitdiff
path: root/list.h
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2011-03-19 10:10:39 +0000
committerAndreas Brachold <vdr07@deltab.de>2011-03-19 10:10:39 +0000
commit0068f2a31c94d2270063cf9993d0de8535675a57 (patch)
treebcb436fa76f912672307f8a90c44b72d516a98ba /list.h
parent1a8054a7e26149796a310266b159247997ee9805 (diff)
downloadvdr-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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/list.h b/list.h
index 47ba66e..ddcd678 100644
--- a/list.h
+++ b/list.h
@@ -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);