Fix typo in filename.

Sat May  5 09:18:30 2001  Owen Taylor  <otaylor@redhat.com>

	* 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.
This commit is contained in:
Owen Taylor 2001-05-05 13:21:22 +00:00 committed by Owen Taylor
parent 81b7687f01
commit d15b4aa50b
9 changed files with 58 additions and 2 deletions

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -1,3 +1,11 @@
Sat May 5 09:18:30 2001 Owen Taylor <otaylor@redhat.com>
* 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 <alla@lysator.liu.se>
* gdk/linux-fb/gdkcolor-fb.c:

View File

@ -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");

View File

@ -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);
}