mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
replace GDK_WINDOW calls by cast to GdkWindow. Patch by Tilman Sauerbeck
2007-06-17 Xan Lopez <xan@gnome.org> * gdk/x11/gdkgeometry-x11.c: replace GDK_WINDOW calls by cast to GdkWindow. Patch by Tilman Sauerbeck from #2063820. svn path=/trunk/; revision=18170
This commit is contained in:
parent
d5fef5c60f
commit
9a0af6de47
@ -1,5 +1,10 @@
|
||||
2007-06-17 Daniel Elstner <danielk@openismus.com>
|
||||
2007-06-17 Xan Lopez <xan@gnome.org>
|
||||
|
||||
* gdk/x11/gdkgeometry-x11.c: replace GDK_WINDOW calls by cast to
|
||||
GdkWindow. Patch by Tilman Sauerbeck from #2063820.
|
||||
|
||||
2007-06-17 Daniel Elstner <danielk@openismus.com>
|
||||
|
||||
* modules/input/gtkimcontextmultipress.c (vfunc_filter_keypress):
|
||||
Change input method behavior to act on key presses instead of
|
||||
key releases, matching normal text input behavior. This change
|
||||
|
@ -246,7 +246,7 @@ gdk_window_copy_area_scroll (GdkWindow *window,
|
||||
|
||||
for (l = obj->children; l; l = l->next)
|
||||
{
|
||||
GdkWindow *child = GDK_WINDOW (l->data);
|
||||
GdkWindow *child = (GdkWindow*) l->data;
|
||||
GdkWindowObject *child_obj = GDK_WINDOW_OBJECT (child);
|
||||
|
||||
gdk_window_move (child, child_obj->x + dx, child_obj->y + dy);
|
||||
@ -371,7 +371,7 @@ gdk_window_guffaw_scroll (GdkWindow *window,
|
||||
|
||||
for (l = obj->children; l; l = l->next)
|
||||
{
|
||||
GdkWindow *child = GDK_WINDOW (l->data);
|
||||
GdkWindow *child = (GdkWindow*) l->data;
|
||||
GdkWindowObject *child_obj = GDK_WINDOW_OBJECT (child);
|
||||
|
||||
child_obj->x -= d_xoffset;
|
||||
|
Loading…
Reference in New Issue
Block a user