diff options
Diffstat (limited to 'libimage/xpm.h')
-rw-r--r-- | libimage/xpm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libimage/xpm.h b/libimage/xpm.h index ace7837..3268ce2 100644 --- a/libimage/xpm.h +++ b/libimage/xpm.h @@ -29,7 +29,7 @@ class cXPM { - char **m_pXPM; + const char **m_pXPM; unsigned int m_nWidth; unsigned int m_nHeight; unsigned int m_nColors; @@ -42,7 +42,7 @@ class cXPM protected: bool GetColor(unsigned int color,unsigned int& rgb) const; public: - cXPM(char* pXPM[]); + cXPM(const char* pXPM[]); virtual ~cXPM(); enum ePlacement |