summaryrefslogtreecommitdiff
path: root/list.h
diff options
context:
space:
mode:
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);