diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-05-27 13:40:57 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-05-27 14:33:32 -0400 |
commit | e4680d64a0864651557fbf8e04db409c827641a7 (patch) | |
tree | 1d931b617ed5fa97462bb43387a9040769481fac | |
parent | 6cd26e09392d9ea68d21daa9c68b0c03d3664cbc (diff) | |
download | gtk+-e4680d64a0864651557fbf8e04db409c827641a7.tar.gz |
Documentation fixes
Add a few missing symbols, and match up parameters in headers
and doc comments.
-rw-r--r-- | docs/reference/gdk/gdk3-sections.txt | 1 | ||||
-rw-r--r-- | docs/reference/gtk/gtk3-sections.txt | 8 | ||||
-rw-r--r-- | gtk/gtkwidget.h | 4 |
3 files changed, 11 insertions, 2 deletions
diff --git a/docs/reference/gdk/gdk3-sections.txt b/docs/reference/gdk/gdk3-sections.txt index 17e1257250..59d4b334ab 100644 --- a/docs/reference/gdk/gdk3-sections.txt +++ b/docs/reference/gdk/gdk3-sections.txt @@ -389,6 +389,7 @@ gdk_window_begin_resize_drag gdk_window_begin_resize_drag_for_device gdk_window_begin_move_drag gdk_window_begin_move_drag_for_device +gdk_window_show_window_menu gdk_window_constrain_size gdk_window_beep gdk_window_get_scale_factor diff --git a/docs/reference/gtk/gtk3-sections.txt b/docs/reference/gtk/gtk3-sections.txt index 14ea216f6f..00afacec34 100644 --- a/docs/reference/gtk/gtk3-sections.txt +++ b/docs/reference/gtk/gtk3-sections.txt @@ -2615,6 +2615,8 @@ gtk_places_sidebar_get_show_connect_to_server gtk_places_sidebar_set_show_connect_to_server gtk_places_sidebar_get_local_only gtk_places_sidebar_set_local_only +gtk_places_sidebar_get_show_enter_location +gtk_places_sidebar_set_show_enter_location <SUBSECTION Standard> GTK_PLACES_SIDEBAR GTK_IS_PLACES_SIDEBAR @@ -7801,6 +7803,8 @@ GtkStackTransitionType gtk_stack_set_transition_type gtk_stack_get_transition_type gtk_stack_get_transition_running +<SUBSECTION Private> +gtk_stack_get_type </SECTION> <SECTION> @@ -7810,6 +7814,8 @@ GtkStackSwitcher gtk_stack_switcher_new gtk_stack_switcher_set_stack gtk_stack_switcher_get_stack +<SUBSECTION Private> +gtk_stack_switcher_get_type </SECTION> <SECTION> @@ -7826,6 +7832,8 @@ gtk_revealer_set_transition_duration GtkRevealerTransitionType gtk_revealer_get_transition_type gtk_revealer_set_transition_type +<SUBSECTION Private> +gtk_revealer_get_type </SECTION> <SECTION> diff --git a/gtk/gtkwidget.h b/gtk/gtkwidget.h index 152f6dde05..910034479c 100644 --- a/gtk/gtkwidget.h +++ b/gtk/gtkwidget.h @@ -947,10 +947,10 @@ void gtk_widget_set_allocation (GtkWidget *widget, const GtkAllocation *allocation); GDK_AVAILABLE_IN_3_14 void gtk_widget_set_clip (GtkWidget *widget, - const GtkAllocation *allocation); + const GtkAllocation *clip); GDK_AVAILABLE_IN_3_14 void gtk_widget_get_clip (GtkWidget *widget, - GtkAllocation *allocation); + GtkAllocation *clip); GDK_DEPRECATED_IN_3_0_FOR(gtk_widget_get_preferred_width & gtk_widget_get_preferred_height) |