]> Pileus Git - ~andy/gtk/commitdiff
gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 9 Aug 2001 07:14:56 +0000 (07:14 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 9 Aug 2001 07:14:56 +0000 (07:14 +0000)
not the foreground color. (#57621)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkgc.c

index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (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:
index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (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:
index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (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:
index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (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:
index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (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:
index 71154565a8ef649429bdfbabe8ca6dc548cf27b9..e8753be02aed3666468316a83550ff604e84b19c 100644 (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:
index 127a692b19ba6c205b72604623d991a8514df53a..dac4d079828946d24d7b78bc332e7fe0bc89df4d 100644 (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);
 }