diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/gtk/gtk-docs.sgml | 2 | ||||
-rw-r--r-- | docs/reference/gtk/gtk3-sections.txt | 22 | ||||
-rw-r--r-- | docs/reference/gtk/gtk3.types.in | 2 | ||||
-rw-r--r-- | docs/reference/gtk/visual_index.xml | 2 | ||||
-rw-r--r-- | docs/tools/widgets.c | 4 |
5 files changed, 16 insertions, 16 deletions
diff --git a/docs/reference/gtk/gtk-docs.sgml b/docs/reference/gtk/gtk-docs.sgml index e6712a35c2..9e69992a63 100644 --- a/docs/reference/gtk/gtk-docs.sgml +++ b/docs/reference/gtk/gtk-docs.sgml @@ -76,7 +76,7 @@ <xi:include href="xml/gtkflowbox.xml" /> <xi:include href="xml/gtkstack.xml" /> <xi:include href="xml/gtkstackswitcher.xml" /> - <xi:include href="xml/gtksidebar.xml" /> + <xi:include href="xml/gtkstacksidebar.xml" /> <xi:include href="xml/gtkactionbar.xml" /> <xi:include href="xml/gtkheaderbar.xml" /> <xi:include href="xml/gtkoverlay.xml" /> diff --git a/docs/reference/gtk/gtk3-sections.txt b/docs/reference/gtk/gtk3-sections.txt index 7db2ee399d..1d76872e99 100644 --- a/docs/reference/gtk/gtk3-sections.txt +++ b/docs/reference/gtk/gtk3-sections.txt @@ -8214,24 +8214,24 @@ gtk_gesture_zoom_get_type </SECTION> <SECTION> -<FILE>gtksidebar</FILE> -GtkSidebar -GtkSidebarClass -gtk_sidebar_new -gtk_sidebar_set_stack -gtk_sidebar_get_stack +<FILE>gtkstacksidebar</FILE> +GtkStackSidebar +GtkStackSidebarClass +gtk_stack_sidebar_new +gtk_stack_sidebar_set_stack +gtk_stack_sidebar_get_stack <SUBSECTION Standard> GTK_TYPE_SIDEBAR -GTK_SIDEBAR -GTK_SIDEBAR_CLASS +GTK_STACK_SIDEBAR +GTK_STACK_SIDEBAR_CLASS GTK_IS_SIDEBAR GTK_IS_SIDEBAR_CLASS -GTK_SIDEBAR_GET_CLASS +GTK_STACK_SIDEBAR_GET_CLASS <SUBSECTION Private> -GtkSidebarPrivate -gtk_sidebar_get_type +GtkStackSidebarPrivate +gtk_stack_sidebar_get_type </SECTION> <SECTION> diff --git a/docs/reference/gtk/gtk3.types.in b/docs/reference/gtk/gtk3.types.in index 0bc2c6a055..4b206223e8 100644 --- a/docs/reference/gtk/gtk3.types.in +++ b/docs/reference/gtk/gtk3.types.in @@ -173,7 +173,7 @@ gtk_separator_get_type gtk_separator_menu_item_get_type gtk_separator_tool_item_get_type gtk_settings_get_type -gtk_sidebar_get_type +gtk_stack_sidebar_get_type gtk_size_group_get_type @ENABLE_ON_X11@gtk_socket_get_type gtk_spin_button_get_type diff --git a/docs/reference/gtk/visual_index.xml b/docs/reference/gtk/visual_index.xml index 6e58e5397c..c3f3776758 100644 --- a/docs/reference/gtk/visual_index.xml +++ b/docs/reference/gtk/visual_index.xml @@ -144,7 +144,7 @@ <link linkend="GtkStackSwitcher"> <inlinegraphic fileref="stackswitcher.png" format="PNG"></inlinegraphic> </link> - <link linkend="GtkSidebar"> + <link linkend="GtkStackSidebar"> <inlinegraphic fileref="sidebar.png" format="PNG"></inlinegraphic> </link> <link linkend="GtkTreeView"> diff --git a/docs/tools/widgets.c b/docs/tools/widgets.c index c6d1afb1e1..932daf1746 100644 --- a/docs/tools/widgets.c +++ b/docs/tools/widgets.c @@ -1407,8 +1407,8 @@ create_sidebar (void) gtk_widget_show (view); gtk_stack_add_titled (GTK_STACK (stack), view, "page2", "Page 2"); - sidebar = gtk_sidebar_new (); - gtk_sidebar_set_stack (GTK_SIDEBAR (sidebar), GTK_STACK (stack)); + sidebar = gtk_stack_sidebar_new (); + gtk_stack_sidebar_set_stack (GTK_STACK_SIDEBAR (sidebar), GTK_STACK (stack)); frame = gtk_frame_new (NULL); hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); |