CComponentsPicture: add comment to isPicPainted()

Not to confuse with isPainted(). Because isPicPainted() is related to
internal image.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 2fade10a11
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-27 (Thu, 27 Feb 2014)



------------------
This commit was generated by Migit
This commit is contained in:
2014-02-27 20:48:24 +01:00
parent ee57e13275
commit 56e1a2abed

View File

@@ -90,7 +90,9 @@ class CComponentsPicture : public CComponentsItem
virtual void setPicture(const char* picture_name);
virtual void setPictureAlign(const int alignment);
///return paint mode of internal image, true=image was painted, please do not to confuse with isPainted()! isPainted() is related to item itself.
virtual inline bool isPicPainted(){return pic_painted;};
virtual void paint(bool do_save_bg = CC_SAVE_SCREEN_YES);
virtual void hide(bool no_restore = false);
virtual inline void getPictureSize(int *pwidth, int *pheight){*pwidth=pic_width; *pheight=pic_height;};