diff options
author | Andreas Brachold <vdr07@deltab.de> | 2007-10-08 16:58:00 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2007-10-08 16:58:00 +0000 |
commit | 7915728c0daf44bc55a04c5190ea08172728b0a7 (patch) | |
tree | a3dccdbaad21df91857caa7971749a51f9c7b463 /libimage/xpm.h | |
parent | b7c2731e64a99397ff9bee2e34764ea0af64b3ce (diff) | |
download | vdr-plugin-image-7915728c0daf44bc55a04c5190ea08172728b0a7.tar.gz vdr-plugin-image-7915728c0daf44bc55a04c5190ea08172728b0a7.tar.bz2 |
* Add setup option to hide main menu entry (Thanks to Alf Fahland, for summit a patch)
* Fix some compiler warnings
* Remove pregenerated header from i18n files and set proper owner, if known
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 |