summaryrefslogtreecommitdiff
path: root/gtk/gtkcelllayout.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-28 01:54:48 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-28 02:02:05 -0500
commit2d003553e89f417263806eac9814397a0dc151c6 (patch)
tree2696c66abdaae27ef116361e28c7bd67f3867765 /gtk/gtkcelllayout.c
parent5d053e03a9b9164d96e7b4645b94090be0412307 (diff)
downloadgtk+-2d003553e89f417263806eac9814397a0dc151c6.tar.gz
docs: don't use <emphasis>
It is a little heavy handed. The text can speak for itself.
Diffstat (limited to 'gtk/gtkcelllayout.c')
-rw-r--r--gtk/gtkcelllayout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcelllayout.c b/gtk/gtkcelllayout.c
index a6d33aa8f7..41d9e2eb41 100644
--- a/gtk/gtkcelllayout.c
+++ b/gtk/gtkcelllayout.c
@@ -25,7 +25,7 @@
* attributes and data funcs.
*
* One of the notable features provided by implementations of GtkCellLayout
- * are <emphasis>attributes</emphasis>. Attributes let you set the properties
+ * are attributes. Attributes let you set the properties
* in flexible ways. They can just be set to constant values like regular
* properties. But they can also be mapped to a column of the underlying
* tree model with gtk_cell_layout_set_attributes(), which means that the value
@@ -94,7 +94,7 @@
* combo = g_object_new (GTK_TYPE_COMBO_BOX, "cell-area", my_cell_area, NULL);
* </programlisting></informalexample>
* to use a custom cell area with a combo box. But construct properties
- * are only initialized <emphasis>after</emphasis> instance init()
+ * are only initialized after instance init()
* functions have run, which means that using functions which rely on
* the existence of the cell area in your subclass' init() function will
* cause the default cell area to be instantiated. In this case, a provided