From 8f4a0888eab83e8924bc33193c8a0f73252e6202 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sun, 29 Aug 2004 08:57:12 +0000 Subject: [PATCH] Unbreak Window#resize. We used to call ecore_x_window_move(), but of course we need to use ecore_x_window_resize(). --- src/ecore_x/rb_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ecore_x/rb_window.c b/src/ecore_x/rb_window.c index 429559a..b0f0837 100644 --- a/src/ecore_x/rb_window.c +++ b/src/ecore_x/rb_window.c @@ -1,5 +1,5 @@ /* - * $Id: rb_window.c 102 2004-08-28 10:00:03Z tilman $ + * $Id: rb_window.c 103 2004-08-29 08:57:12Z tilman $ * * Copyright (C) 2004 ruby-ecore team (see AUTHORS) * @@ -269,7 +269,7 @@ static VALUE c_resize (VALUE self, VALUE w, VALUE h) Check_Type (w, T_FIXNUM); Check_Type (h, T_FIXNUM); - ecore_x_window_move (win->real, FIX2INT (w), FIX2INT (h)); + ecore_x_window_resize (win->real, FIX2INT (w), FIX2INT (h)); return Qnil; } -- 2.30.2