diff --git a/ChangeLog b/ChangeLog index 71154565a8..e8753be02a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 71154565a8..e8753be02a 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 71154565a8..e8753be02a 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 71154565a8..e8753be02a 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 71154565a8..e8753be02a 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 71154565a8..e8753be02a 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 71154565a8..e8753be02a 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + 2001-08-09 Alexander Larsson * gdk/win32/gdkfont-win32.c: diff --git a/gdk/gdkgc.c b/gdk/gdkgc.c index 127a692b19..dac4d07982 100644 --- a/gdk/gdkgc.c +++ b/gdk/gdkgc.c @@ -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); }