diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2007-06-15 20:56:30 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-06-15 20:56:30 +0000 |
commit | 2c1ee89734d65494a3a1938234ac564090af1dfe (patch) | |
tree | 80abb95238fc5bd811106a4ba424026201d6730b | |
parent | 7af593479231e7e015920d3a4dac7d584b17061f (diff) | |
download | gtk+-2c1ee89734d65494a3a1938234ac564090af1dfe.tar.gz |
Fix up docs
svn path=/trunk/; revision=18150
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | gtk/gtktreeview.c | 15 |
2 files changed, 9 insertions, 8 deletions
@@ -1,4 +1,6 @@ 2007-06-15 Matthias Clasen <mclasen@redhat.com> + + * gtk/gtktreeview.c: Fix up cross-references in docs. * gtk/Makefile.am: Don't install gtkbuilderprivate.h diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index 474c2f0387..c1c7a6113f 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -12529,7 +12529,7 @@ gtk_tree_view_get_bin_window (GtkTreeView *tree_view) * @cell_y: A pointer where the Y coordinate relative to the cell can be placed, or %NULL * * Finds the path at the point (@x, @y), relative to bin_window coordinates - * (please see <literal>gtk_tree_view_get_bin_window (<!-- -->)</literal>). + * (please see gtk_tree_view_get_bin_window()). * That is, @x and @y are relative to an events coordinates. @x and @y must * come from an event on the @tree_view only where <literal>event->window == * gtk_tree_view_get_bin_window (<!-- -->)</literal>. It is primarily for @@ -12543,7 +12543,7 @@ gtk_tree_view_get_bin_window (GtkTreeView *tree_view) * * For converting widget coordinates (eg. the ones you get from * GtkWidget::query-tooltip), please see - * <literal>gtk_tree_view_convert_widget_to_bin_window_coords (<!-- -->)</literal>. + * gtk_tree_view_convert_widget_to_bin_window_coords(). * * Return value: %TRUE if a row exists at that coordinate. **/ @@ -12799,7 +12799,7 @@ gtk_tree_view_get_background_area (GtkTreeView *tree_view, * * Fills @visible_rect with the currently-visible region of the * buffer, in tree coordinates. Convert to bin_window coordinates with - * <literal>gtk_tree_view_convert_tree_to_bin_window_coords (<!-- -->)</literal>. + * gtk_tree_view_convert_tree_to_bin_window_coords(). * Tree coordinates start at 0,0 for row 0 of the tree, and cover the entire * scrollable area of the tree. **/ @@ -12836,7 +12836,7 @@ gtk_tree_view_get_visible_rect (GtkTreeView *tree_view, * Deprecated: 2.12: Due to historial reasons the name of this function is * incorrect. For converting coordinates relative to the widget to * bin_window coordinates, please see - * <literal>gtk_tree_view_convert_widget_to_bin_window_coords (<!-- -->)</literal>. + * gtk_tree_view_convert_widget_to_bin_window_coords(). * **/ void @@ -12868,7 +12868,7 @@ gtk_tree_view_widget_to_tree_coords (GtkTreeView *tree_view, * Deprecated: 2.12: Due to historial reasons the name of this function is * incorrect. For converting bin_window coordinates to coordinates relative * to bin_window, please see - * <literal>gtk_tree_view_convert_bin_window_to_widget_coords (<!-- -->)</literal>. + * gtk_tree_view_convert_bin_window_to_widget_coords(). * **/ void @@ -12960,7 +12960,7 @@ gtk_tree_view_convert_tree_to_widget_coords (GtkTreeView *tree_view, * @by: return location for bin_window Y coordinate * * Converts widget coordinates to coordinates for the bin_window - * (see <literal>gtk_tree_view_get_bin_window (<!-- -->)</literal>). + * (see gtk_tree_view_get_bin_window()). * * Since: 2.12 **/ @@ -12987,8 +12987,7 @@ gtk_tree_view_convert_widget_to_bin_window_coords (GtkTreeView *tree_view, * @wx: return location for widget X coordinate * @wy: return location for widget Y coordinate * - * Converts bin_window coordinates (see - * <literal>gtk_tree_view_get_bin_window (<!-- -->)</literal). + * Converts bin_window coordinates (see gtk_tree_view_get_bin_window()). * to widget relative coordinates. * * Since: 2.12 |