docs: Don't use warnings

This commit is contained in:
William Jon McCann 2014-02-06 09:44:46 -05:00
parent 99f16d25a7
commit f999ac686b
4 changed files with 9 additions and 14 deletions

View File

@ -32,11 +32,9 @@
* @Title: GtkAction * @Title: GtkAction
* @See_also: #GtkActionGroup, #GtkUIManager, #GtkActivatable * @See_also: #GtkActionGroup, #GtkUIManager, #GtkActivatable
* *
* <warning> * > In GTK+ 3.10, GtkAction has been deprecated. Use #GAction
* In GTK+ 3.10, GtkAction has been deprecated. Use #GAction instead, and * > instead, and associate actions with #GtkActionable widgets. Use
* associate actions with #GtkActionable widgets. Use #GMenuModel for creating * > #GMenuModel for creating menus with gtk_menu_new_from_model().
* menus with gtk_menu_new_from_model().
* </warning>
* *
* Actions represent operations that the user can be perform, along with * Actions represent operations that the user can be perform, along with
* some information how it should be presented in the interface. Each action * some information how it should be presented in the interface. Each action

View File

@ -71,10 +71,8 @@
* various aspects of the operation of a GTK+ program * various aspects of the operation of a GTK+ program
* at runtime. * at runtime.
* *
* <warning> * > In GTK+ 3.0, resource files have been deprecated and replaced by
* In GTK+ 3.0, resource files have been deprecated and replaced * > CSS-like style sheets, which are understood by #GtkCssProvider.
* by CSS-like style sheets, which are understood by #GtkCssProvider.
* </warning>
* *
* # Default files # * # Default files #
* *

View File

@ -54,9 +54,8 @@
* A #GtkStyle object encapsulates the information that provides the look and * A #GtkStyle object encapsulates the information that provides the look and
* feel for a widget. * feel for a widget.
* *
* <warning> * > In GTK+ 3.0, GtkStyle has been deprecated and replaced by
* In GTK+ 3.0, GtkStyle has been deprecated and replaced by #GtkStyleContext. * > #GtkStyleContext.
* </warning>
* *
* Each #GtkWidget has an associated #GtkStyle object that is used when * Each #GtkWidget has an associated #GtkStyle object that is used when
* rendering that widget. Also, a #GtkStyle holds information for the five * rendering that widget. Also, a #GtkStyle holds information for the five

View File

@ -1443,8 +1443,8 @@ gtk_list_store_clear (GtkListStore *list_store)
* @list_store: A #GtkListStore. * @list_store: A #GtkListStore.
* @iter: A #GtkTreeIter. * @iter: A #GtkTreeIter.
* *
* <warning>This function is slow. Only use it for debugging and/or testing * > This function is slow. Only use it for debugging and/or testing
* purposes.</warning> * > purposes.
* *
* Checks if the given iter is a valid iter for this #GtkListStore. * Checks if the given iter is a valid iter for this #GtkListStore.
* *