diff --git a/ChangeLog b/ChangeLog index e74f7a3629..444d1cba54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index e74f7a3629..444d1cba54 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index e74f7a3629..444d1cba54 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index e74f7a3629..444d1cba54 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index e74f7a3629..444d1cba54 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index e74f7a3629..444d1cba54 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index e74f7a3629..444d1cba54 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,11 @@ +Sat May 5 09:18:30 2001 Owen Taylor + + * demos/gtk-demo/images.c (progressive_timeout): Fix + typo in filename. + + * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment + out FIXME warning; just too annoying. + 2001-05-04 Alex Larsson * gdk/linux-fb/gdkcolor-fb.c: diff --git a/demos/gtk-demo/images.c b/demos/gtk-demo/images.c index 756046ecfd..353cb4c8c2 100644 --- a/demos/gtk-demo/images.c +++ b/demos/gtk-demo/images.c @@ -183,7 +183,7 @@ progressive_timeout (gpointer data) if (g_file_test ("./gtk-logo-rgb.gif", G_FILE_TEST_EXISTS)) filename = "./gtk-logo-rgb.gif"; else - filename = DEMOCODEDIR"/gtk-log-rgb.gif"; + filename = DEMOCODEDIR"/gtk-logo-rgb.gif"; image_stream = fopen (filename, "r"); diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index b88c549fa2..0b3db94c16 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -6204,7 +6204,7 @@ gtk_tree_view_row_activated (GtkTreeView *tree_view, g_return_if_fail (GTK_IS_TREE_VIEW (tree_view)); /* FIXME: Actually activate the path internally, not just emit the signal */ - g_warning ("FIXME: Actually activate the path internally, not just emit the signal\n"); + /* g_warning ("FIXME: Actually activate the path internally, not just emit the signal\n"); */ g_signal_emit (G_OBJECT(tree_view), tree_view_signals[ROW_ACTIVATED], 0, path, column); }