summaryrefslogtreecommitdiff
path: root/gtk/gtkcellrenderercombo.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2004-10-31 17:56:51 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-10-31 17:56:51 +0000
commit82129275f22c61cd3510c72345846402ecfcdbbd (patch)
tree371e0a6dffc9a3426b8bf78db1c69000829ef2d2 /gtk/gtkcellrenderercombo.c
parentb2cc7d06b8c6b62c50da6860ba518c9e36b25c45 (diff)
downloadgtk+-82129275f22c61cd3510c72345846402ecfcdbbd.tar.gz
Update doc comments.
2004-10-31 Matthias Clasen <mclasen@redhat.com> * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): Update doc comments.
Diffstat (limited to 'gtk/gtkcellrenderercombo.c')
-rw-r--r--gtk/gtkcellrenderercombo.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/gtk/gtkcellrenderercombo.c b/gtk/gtkcellrenderercombo.c
index 10702ec45c..f15bc7bad7 100644
--- a/gtk/gtkcellrenderercombo.c
+++ b/gtk/gtkcellrenderercombo.c
@@ -77,9 +77,8 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
/**
* GtkCellRendererCombo:model:
*
- * The :model property holds a tree model containing the possible
- * values for the combo box. Use the :text_column property to specify
- * the column holding the values.
+ * Holds a tree model containing the possible values for the combo box.
+ * Use the text_column property to specify the column holding the values.
*
* Since: 2.6
*/
@@ -92,13 +91,12 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
G_PARAM_READWRITE));
/**
- * GtkCellRendererCombo:text_column:
+ * GtkCellRendererCombo:text-column:
*
- * The :text_column property specifies the model column which
- * holds the possible values for the combo box. Note that this
- * refers to the model specified in the :model property,
- * <emphasis>not</emphasis> the model backing the tree view to
- * which this cell renderer is attached.
+ * Specifies the model column which holds the possible values for the combo box.
+ * Note that this refers to the model specified in the model property,
+ * <emphasis>not</emphasis> the model backing the tree view to which this cell
+ * renderer is attached.
*
* Since: 2.6
*/
@@ -113,11 +111,10 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
G_PARAM_READWRITE));
/**
- * GtkCellRendererCombo:has_entry:
+ * GtkCellRendererCombo:has-entry:
*
- * If the :has_entry property is %TRUE, the cell renderer will
- * include an entry and allow to enter values other than the ones
- * in the popup list.
+ * If %TRUE, the cell renderer will include an entry and allow to enter values
+ * other than the ones in the popup list.
*
* Since: 2.6
*/
@@ -125,7 +122,7 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
PROP_HAS_ENTRY,
g_param_spec_boolean ("has_entry",
P_("Has Entry"),
- P_("If %FALSE, don't allow to enter strings other than the chosen ones"),
+ P_("If FALSE, don't allow to enter strings other than the chosen ones"),
TRUE,
G_PARAM_READWRITE));