gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,

not the foreground color. (#57621)
This commit is contained in:
Matthias Clasen 2001-08-09 07:14:56 +00:00
parent cdb59b8949
commit 6dd7f04620
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -1,3 +1,8 @@
2001-08-09 Matthias Clasen <matthiasc@waldgeist.poet.de>
* gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
not the foreground color. (#57621)
2001-08-09 Alexander Larsson <alexl@redhat.com>
* gdk/win32/gdkfont-win32.c:

View File

@ -520,5 +520,5 @@ gdk_gc_set_rgb_bg_color (GdkGC *gc, GdkColor *color)
tmp_color = *color;
gdk_rgb_find_color (cmap, &tmp_color);
gdk_gc_set_foreground (gc, &tmp_color);
gdk_gc_set_background (gc, &tmp_color);
}