summaryrefslogtreecommitdiff
path: root/src/gui/widgets/icon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/icon.h')
-rw-r--r--src/gui/widgets/icon.h4
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)