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
This commit is contained in:
parent
f00e0c4f51
commit
a52d7cd409
@ -5,6 +5,7 @@ config.h.in
|
||||
libtool
|
||||
config.status
|
||||
stamp-h
|
||||
stamp-h1
|
||||
Makefile
|
||||
Makefile.in
|
||||
aclocal.m4
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
||||
Fri Oct 19 15:34:06 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* gtktreestore.c
|
||||
* Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
|
||||
* Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
|
@ -7194,9 +7194,9 @@ gtk_tree_view_scroll_to_point (GtkTreeView *tree_view,
|
||||
* if @path is NULL no vertical scrolling occurs. @row_align determines where
|
||||
* the row is placed, and @col_align determines where @column is placed. Both
|
||||
* are expected to be between 0.0 and 1.0. 0.0 means left/top alignment, 1.0
|
||||
* means right/bottom alignment, 0.5 means center. If @use_align is %TRUE, then
|
||||
* the alignment arguments are ignored, and the tree does the minimum amount of
|
||||
* work to scroll the cell onto the screen.
|
||||
* means right/bottom alignment, 0.5 means center. If @use_align is %FALSE,
|
||||
* then the alignment arguments are ignored, and the tree does the minimum
|
||||
* amount of work to scroll the cell onto the screen.
|
||||
**/
|
||||
void
|
||||
gtk_tree_view_scroll_to_cell (GtkTreeView *tree_view,
|
||||
|
@ -21,3 +21,4 @@ testtextbuffer
|
||||
testtreefocus
|
||||
testtreesort
|
||||
treestoretest
|
||||
testtreeflow
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user