summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}