diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-26 15:19:22 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-26 15:19:22 +0000 |
commit | 1581b1f651c71d2633935ca131913fe168583294 (patch) | |
tree | cb211f945b1303799ec7363574cff1040c1c1d42 /src/gui/window.h | |
parent | a736e518012b003db5fb56ac8310c9fcd00a5c51 (diff) | |
download | mana-1581b1f651c71d2633935ca131913fe168583294.tar.gz mana-1581b1f651c71d2633935ca131913fe168583294.tar.bz2 mana-1581b1f651c71d2633935ca131913fe168583294.tar.xz mana-1581b1f651c71d2633935ca131913fe168583294.zip |
Make sure logic method is called on the content of windows, fixes lists.
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index 2b98bebf..126fe2f4 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -82,6 +82,11 @@ class Window : public gcn::Window void draw(gcn::Graphics *graphics); /** + * Calls logic on content widget (cause Guichan 0.3.0 forgot this) + */ + void logic(); + + /** * Adds a widget to the window. */ void add(gcn::Widget *w); |