summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-04
-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--gtk/testgtk.c7
-rw-r--r--tests/testgtk.c7
9 files changed, 36 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 05f86dd64..d9ae7fa8a 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,7 @@
+Tue Mar 31 06:37:16 1998 Tim Janik <timj@gtk.org>
+
+ * gtk/testgtk.c (create_cursors): forgot to set the initial `0' cursor.
+
1998-03-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkdnd.c (gdk_dnd_display_drag_cursor): First fix: Move the
diff --git a/gtk/testgtk.c b/gtk/testgtk.c
index c4e3dd4ed..8cfd86243 100644
--- a/gtk/testgtk.c
+++ b/gtk/testgtk.c
@@ -2653,10 +2653,11 @@ create_cursors ()
GTK_SIGNAL_FUNC (gtk_widget_destroy),
GTK_OBJECT (window));
gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 5);
- }
- if (!GTK_WIDGET_VISIBLE (window))
- gtk_widget_show_all (window);
+ gtk_widget_show_all (window);
+
+ set_cursor (spinner, darea);
+ }
else
gtk_widget_destroy (window);
}
diff --git a/tests/testgtk.c b/tests/testgtk.c
index c4e3dd4ed..8cfd86243 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -2653,10 +2653,11 @@ create_cursors ()
GTK_SIGNAL_FUNC (gtk_widget_destroy),
GTK_OBJECT (window));
gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 5);
- }
- if (!GTK_WIDGET_VISIBLE (window))
- gtk_widget_show_all (window);
+ gtk_widget_show_all (window);
+
+ set_cursor (spinner, darea);
+ }
else
gtk_widget_destroy (window);
}