projects
/
ruby-ecore.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5fcf07
)
Unbreak Window#resize.
author
Tilman Sauerbeck
<tilman@code-monkey.de>
Sun, 29 Aug 2004 08:57:12 +0000
(08:57 +0000)
committer
Tilman Sauerbeck
<tilman@code-monkey.de>
Sun, 29 Aug 2004 08:57:12 +0000
(08:57 +0000)
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
patch
|
blob
|
history
diff --git
a/src/ecore_x/rb_window.c
b/src/ecore_x/rb_window.c
index 429559a5e3f760dbf646d23f8a5b99637d912988..b0f0837db8cb686360d90444fb9936dba262e8f6 100644
(file)
--- a/
src/ecore_x/rb_window.c
+++ b/
src/ecore_x/rb_window.c
@@
-1,5
+1,5
@@
/*
- * $Id: rb_window.c 10
2 2004-08-28 10:00:03
Z tilman $
+ * $Id: rb_window.c 10
3 2004-08-29 08:57:12
Z 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_
mov
e (win->real, FIX2INT (w), FIX2INT (h));
+ ecore_x_window_
resiz
e (win->real, FIX2INT (w), FIX2INT (h));
return Qnil;
}