diff options
author | pixel <pixel> | 2005-03-29 17:33:34 +0000 |
---|---|---|
committer | pixel <pixel> | 2005-03-29 17:33:34 +0000 |
commit | 8e81300840d2f0369e65322a283bb1c33868047a (patch) | |
tree | 53a757d82ea37daca915007f16daddc04c67e5b5 /lib | |
parent | b0b10e31736df2a943ea6bc094350c9119b282e6 (diff) |
Gruu: we want recursivity when moving objects around!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/widgets.cc b/lib/widgets.cc index 9851c10..daec5ea 100644 --- a/lib/widgets.cc +++ b/lib/widgets.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: widgets.cc,v 1.12 2005-03-29 16:38:06 orphis Exp $ */ +/* $Id: widgets.cc,v 1.13 2005-03-29 17:33:34 pixel Exp $ */ #include <SDL.h> #include <vector> @@ -463,10 +463,10 @@ void mogltk::widget::icomputeabs() { computeabs(); if (next) - next->computeabs(); + next->icomputeabs(); if (child) - child->computeabs(); + child->icomputeabs(); } void mogltk::widget::iresize_notify() { |