diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 01:25:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:43 +0300 |
commit | 5d02ab43ff6d3e328a3b02479c033609023edec2 (patch) | |
tree | 43a8442d585c969fe75a545f83d01b81be9327d7 /src/gui/widgets/icon.h | |
parent | 312118f5a7a1a7537cfb20f61d9b408dfcf03e8c (diff) | |
download | plus-5d02ab43ff6d3e328a3b02479c033609023edec2.tar.gz plus-5d02ab43ff6d3e328a3b02479c033609023edec2.tar.bz2 plus-5d02ab43ff6d3e328a3b02479c033609023edec2.tar.xz plus-5d02ab43ff6d3e328a3b02479c033609023edec2.zip |
Add palette inheritance to icon class.
Diffstat (limited to 'src/gui/widgets/icon.h')
-rw-r--r-- | src/gui/widgets/icon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/icon.h b/src/gui/widgets/icon.h index e0cabf3d9..761bbe584 100644 --- a/src/gui/widgets/icon.h +++ b/src/gui/widgets/icon.h @@ -43,12 +43,12 @@ class Icon final : public gcn::Widget, /** * Constructor. */ - Icon(const std::string &filename); + Icon(const Widget2 *const widget, const std::string &filename); /** * Constructor, uses an existing Image. */ - Icon(Image *const image); + Icon(const Widget2 *const widget, Image *const image); A_DELETE_COPY(Icon) |