diff options
author | Sebastian Geerken <devnull@localhost> | 2014-10-23 13:10:17 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-10-23 13:10:17 +0200 |
commit | 0c9973c7c8127da4129c1810c52c29f69eb8665f (patch) | |
tree | b37fec0f342567b1ee55917b7b8dfe1d4518f0e7 /dw/image.cc | |
parent | 80122aabb6debd724228405c358541ecb88f63bf (diff) |
Removed old Widget::draw (backward compatibility is not possible anyway).
Diffstat (limited to 'dw/image.cc')
-rw-r--r-- | dw/image.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dw/image.cc b/dw/image.cc index 8a4be32f..881eb687 100644 --- a/dw/image.cc +++ b/dw/image.cc @@ -404,7 +404,8 @@ bool Image::buttonReleaseImpl (core::EventButton *event) return false; } -void Image::draw (core::View *view, core::Rectangle *area) +core::Widget *Image::draw (core::View *view, core::Rectangle *area, + core::StackingIteratorStack *iteratorStack) { int dx, dy; core::Rectangle content, intersection; @@ -468,6 +469,8 @@ void Image::draw (core::View *view, core::Rectangle *area) } /** TODO: draw selection */ + + return NULL; } core::Iterator *Image::iterator (core::Content::Type mask, bool atEnd) |