diff options
author | Manish Singh <yosh@gimp.org> | 2001-10-19 20:46:43 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2001-10-19 20:46:43 +0000 |
commit | a52d7cd409426738fe741ab91fb11274209b0060 (patch) | |
tree | 00cfc7c4bbacc6367f8758f1322e4c36bc755221 /tests | |
parent | f00e0c4f51f6a797c9d0471c50defb9df5a60b55 (diff) | |
download | gtk+-a52d7cd409426738fe741ab91fb11274209b0060.tar.gz |
correct docs for use_align
Fri Oct 19 13:44:51 2001 Manish Singh <yosh@gimp.org>
* gtk/gtktreeview.c (gtk_treeview_scroll_to_cell): correct docs
for use_align
Diffstat (limited to 'tests')
-rw-r--r-- | tests/.cvsignore | 1 | ||||
-rw-r--r-- | tests/testtreeflow.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/.cvsignore b/tests/.cvsignore index 06c4cde069..1a172a168c 100644 --- a/tests/.cvsignore +++ b/tests/.cvsignore @@ -21,3 +21,4 @@ testtextbuffer testtreefocus testtreesort treestoretest +testtreeflow diff --git a/tests/testtreeflow.c b/tests/testtreeflow.c index 5625e46952..b9558cf0e9 100644 --- a/tests/testtreeflow.c +++ b/tests/testtreeflow.c @@ -138,7 +138,7 @@ main (int argc, char *argv[]) g_signal_connect (G_OBJECT (button), "realize", G_CALLBACK (gtk_widget_grab_focus), NULL); gtk_window_set_default_size (GTK_WINDOW (window), 300, 400); gtk_widget_show_all (window); - g_timeout_add (1000, futz, NULL); + g_timeout_add (1000, (GSourceFunc) futz, NULL); gtk_main (); return 0; } |