diff options
-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() { |