summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-05
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtktoolbar.c2
8 files changed, 36 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 9d8b02fc2..0f939d27e 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,8 @@
+Tue Jun 6 10:53:59 2000 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
+ prepend not append. (Pointed out by Brett Hall.)
+
Tue Jun 6 01:59:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c
index 9aa8d7d17..3001cb57f 100644
--- a/gtk/gtktoolbar.c
+++ b/gtk/gtktoolbar.c
@@ -843,7 +843,7 @@ gtk_toolbar_prepend_widget (GtkToolbar *toolbar,
widget, NULL,
tooltip_text, tooltip_private_text,
NULL, NULL, NULL,
- toolbar->num_children);
+ 0);
}
void