Fix a cut&paste error that caused crashes.

* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
	error that caused crashes.
This commit is contained in:
Tor Lillqvist
1999-08-19 19:10:26 +00:00
parent 70372ba8bd
commit 29b00ba8e5
9 changed files with 37 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -1,3 +1,8 @@
1999-08-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
error that caused crashes.
1999-08-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one

View File

@@ -147,7 +147,7 @@ gdk_gc_new_with_values (GdkWindow *window,
if (values_mask & GDK_GC_STIPPLE)
{
private->stipple = values->tile;
private->stipple = values->stipple;
gdk_pixmap_ref (private->stipple);
GDK_NOTE (MISC, g_print (" stipple=%#x", ((GdkPixmapPrivate *)private->stipple)->xwindow));
}

View File

@@ -147,7 +147,7 @@ gdk_gc_new_with_values (GdkWindow *window,
if (values_mask & GDK_GC_STIPPLE)
{
private->stipple = values->tile;
private->stipple = values->stipple;
gdk_pixmap_ref (private->stipple);
GDK_NOTE (MISC, g_print (" stipple=%#x", ((GdkPixmapPrivate *)private->stipple)->xwindow));
}