summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Neumann <sven@gimp.org>2002-09-14 17:10:49 +0000
committerSven Neumann <neo@src.gnome.org>2002-09-14 17:10:49 +0000
commit3f01e7e533f4dcb82c77bd0a638ce951f71fb07e (patch)
tree93c6b19cd702953fc41aa6f2461c8eb7b4fdaf2e
parent11b366a646f6644e3e8db74ce8def4460eb0a228 (diff)
downloadgtk+-3f01e7e533f4dcb82c77bd0a638ce951f71fb07e.tar.gz
fixed my latest change.
2002-09-14 Sven Neumann <sven@gimp.org> * gdk/gdkpixbuf-drawable.c: fixed my latest change.
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-104
-rw-r--r--ChangeLog.pre-2-24
-rw-r--r--ChangeLog.pre-2-44
-rw-r--r--ChangeLog.pre-2-64
-rw-r--r--ChangeLog.pre-2-84
-rw-r--r--gdk/gdkpixbuf-drawable.c2
7 files changed, 25 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5b52c814bd..231e703063 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-09-14 Sven Neumann <sven@gimp.org>
+
+ * gdk/gdkpixbuf-drawable.c: fixed my latest change.
+
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 5b52c814bd..231e703063 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,7 @@
+2002-09-14 Sven Neumann <sven@gimp.org>
+
+ * gdk/gdkpixbuf-drawable.c: fixed my latest change.
+
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 5b52c814bd..231e703063 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,7 @@
+2002-09-14 Sven Neumann <sven@gimp.org>
+
+ * gdk/gdkpixbuf-drawable.c: fixed my latest change.
+
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 5b52c814bd..231e703063 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,7 @@
+2002-09-14 Sven Neumann <sven@gimp.org>
+
+ * gdk/gdkpixbuf-drawable.c: fixed my latest change.
+
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 5b52c814bd..231e703063 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,7 @@
+2002-09-14 Sven Neumann <sven@gimp.org>
+
+ * gdk/gdkpixbuf-drawable.c: fixed my latest change.
+
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 5b52c814bd..231e703063 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,7 @@
+2002-09-14 Sven Neumann <sven@gimp.org>
+
+ * gdk/gdkpixbuf-drawable.c: fixed my latest change.
+
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the
diff --git a/gdk/gdkpixbuf-drawable.c b/gdk/gdkpixbuf-drawable.c
index 042db48781..0259534cb4 100644
--- a/gdk/gdkpixbuf-drawable.c
+++ b/gdk/gdkpixbuf-drawable.c
@@ -345,7 +345,7 @@ rgb8a (GdkImage *image,
remap[xx] = 0xff
| (colormap->colors[xx].red & 0xff00) << 16
| (colormap->colors[xx].green & 0xff00) << 8
- | (colormap->colors[xx].blue & 0xff00));
+ | (colormap->colors[xx].blue & 0xff00);
#endif
}