Fix small documentation problems after the toolpalette merge

Several Since tags were wrong. Spotted by Christian Persch in
bug 603268.
This commit is contained in:
Matthias Clasen
2009-11-28 20:59:56 -05:00
parent 4e0b7bf6fe
commit d8dfad3eb9
2 changed files with 22 additions and 26 deletions

View File

@ -974,8 +974,6 @@ gtk_settings_class_init (GtkSettingsClass *class)
* GtkSettings:toolbar-style: * GtkSettings:toolbar-style:
* *
* The size of icons in default toolbars. * The size of icons in default toolbars.
*
* Since: 2.18
*/ */
result = settings_install_property_parser (class, result = settings_install_property_parser (class,
g_param_spec_enum ("gtk-toolbar-style", g_param_spec_enum ("gtk-toolbar-style",
@ -991,8 +989,6 @@ gtk_settings_class_init (GtkSettingsClass *class)
* GtkSettings:toolbar-icon-size: * GtkSettings:toolbar-icon-size:
* *
* The size of icons in default toolbars. * The size of icons in default toolbars.
*
* Since: 2.18
*/ */
result = settings_install_property_parser (class, result = settings_install_property_parser (class,
g_param_spec_enum ("gtk-toolbar-icon-size", g_param_spec_enum ("gtk-toolbar-icon-size",

View File

@ -705,16 +705,16 @@ gtk_tool_item_new (void)
/** /**
* gtk_tool_item_get_ellipsize_mode: * gtk_tool_item_get_ellipsize_mode:
* @tool_item: a #GtkToolItem: * @tool_item: a #GtkToolItem
* *
* Returns the ellipsize mode used for @tool_item. Custom subclasses of * Returns the ellipsize mode used for @tool_item. Custom subclasses of
* #GtkToolItem should call this function to find out how text should * #GtkToolItem should call this function to find out how text should
* be ellipsized. * be ellipsized.
* *
* Return value: a #PangoEllipsizeMode indicating how text in @tool_item * Return value: a #PangoEllipsizeMode indicating how text in @tool_item
* should be ellipsized. * should be ellipsized.
* *
* Since: 2.14 * Since: 2.20
**/ **/
PangoEllipsizeMode PangoEllipsizeMode
gtk_tool_item_get_ellipsize_mode (GtkToolItem *tool_item) gtk_tool_item_get_ellipsize_mode (GtkToolItem *tool_item)
@ -865,7 +865,7 @@ gtk_tool_item_get_relief_style (GtkToolItem *tool_item)
* Return value: a #gfloat indicating the horizontal text alignment * Return value: a #gfloat indicating the horizontal text alignment
* used for @tool_item * used for @tool_item
* *
* Since: 2.14 * Since: 2.20
**/ **/
gfloat gfloat
gtk_tool_item_get_text_alignment (GtkToolItem *tool_item) gtk_tool_item_get_text_alignment (GtkToolItem *tool_item)
@ -883,17 +883,17 @@ gtk_tool_item_get_text_alignment (GtkToolItem *tool_item)
/** /**
* gtk_tool_item_get_text_orientation: * gtk_tool_item_get_text_orientation:
* @tool_item: a #GtkToolItem: * @tool_item: a #GtkToolItem
* *
* Returns the text orientation used for @tool_item. Custom subclasses of * Returns the text orientation used for @tool_item. Custom subclasses of
* #GtkToolItem should call this function to find out how text should * #GtkToolItem should call this function to find out how text should
* be orientated. * be orientated.
* *
* Return value: a #GtkOrientation indicating the text orientation * Return value: a #GtkOrientation indicating the text orientation
* used for @tool_item * used for @tool_item
* *
* Since: 2.14 * Since: 2.20
**/ */
GtkOrientation GtkOrientation
gtk_tool_item_get_text_orientation (GtkToolItem *tool_item) gtk_tool_item_get_text_orientation (GtkToolItem *tool_item)
{ {
@ -910,15 +910,15 @@ gtk_tool_item_get_text_orientation (GtkToolItem *tool_item)
/** /**
* gtk_tool_item_get_text_size_group: * gtk_tool_item_get_text_size_group:
* @tool_item: a #GtkToolItem: * @tool_item: a #GtkToolItem
* *
* Returns the size group used for labels in @tool_item. Custom subclasses of * Returns the size group used for labels in @tool_item. Custom subclasses of
* #GtkToolItem should call this function and use the size group for labels. * #GtkToolItem should call this function and use the size group for labels.
* *
* Return value: a #GtkSizeGroup * Return value: a #GtkSizeGroup
* *
* Since: 2.14 * Since: 2.20
**/ */
GtkSizeGroup * GtkSizeGroup *
gtk_tool_item_get_text_size_group (GtkToolItem *tool_item) gtk_tool_item_get_text_size_group (GtkToolItem *tool_item)
{ {
@ -935,16 +935,16 @@ gtk_tool_item_get_text_size_group (GtkToolItem *tool_item)
/** /**
* gtk_tool_item_set_expand: * gtk_tool_item_set_expand:
* @tool_item: a #GtkToolItem * @tool_item: a #GtkToolItem
* @expand: Whether @tool_item is allocated extra space * @expand: Whether @tool_item is allocated extra space
* *
* Sets whether @tool_item is allocated extra space when there * Sets whether @tool_item is allocated extra space when there
* is more room on the toolbar then needed for the items. The * is more room on the toolbar then needed for the items. The
* effect is that the item gets bigger when the toolbar gets bigger * effect is that the item gets bigger when the toolbar gets bigger
* and smaller when the toolbar gets smaller. * and smaller when the toolbar gets smaller.
* *
* Since: 2.4 * Since: 2.4
**/ */
void void
gtk_tool_item_set_expand (GtkToolItem *tool_item, gtk_tool_item_set_expand (GtkToolItem *tool_item,
gboolean expand) gboolean expand)