mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 04:10:13 +00:00
Update doc comments.
2004-10-31 Matthias Clasen <mclasen@redhat.com> * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): Update doc comments.
This commit is contained in:
parent
b2cc7d06b8
commit
82129275f2
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init):
|
||||||
|
Update doc comments.
|
||||||
|
|
||||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* gdk/win32/gdkprivate-win32.h
|
* gdk/win32/gdkprivate-win32.h
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init):
|
||||||
|
Update doc comments.
|
||||||
|
|
||||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* gdk/win32/gdkprivate-win32.h
|
* gdk/win32/gdkprivate-win32.h
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init):
|
||||||
|
Update doc comments.
|
||||||
|
|
||||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* gdk/win32/gdkprivate-win32.h
|
* gdk/win32/gdkprivate-win32.h
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init):
|
||||||
|
Update doc comments.
|
||||||
|
|
||||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* gdk/win32/gdkprivate-win32.h
|
* gdk/win32/gdkprivate-win32.h
|
||||||
|
@ -77,9 +77,8 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
|||||||
/**
|
/**
|
||||||
* GtkCellRendererCombo:model:
|
* GtkCellRendererCombo:model:
|
||||||
*
|
*
|
||||||
* The :model property holds a tree model containing the possible
|
* Holds a tree model containing the possible values for the combo box.
|
||||||
* values for the combo box. Use the :text_column property to specify
|
* Use the text_column property to specify the column holding the values.
|
||||||
* the column holding the values.
|
|
||||||
*
|
*
|
||||||
* Since: 2.6
|
* Since: 2.6
|
||||||
*/
|
*/
|
||||||
@ -92,13 +91,12 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
|||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GtkCellRendererCombo:text_column:
|
* GtkCellRendererCombo:text-column:
|
||||||
*
|
*
|
||||||
* The :text_column property specifies the model column which
|
* Specifies the model column which holds the possible values for the combo box.
|
||||||
* holds the possible values for the combo box. Note that this
|
* Note that this refers to the model specified in the model property,
|
||||||
* refers to the model specified in the :model property,
|
* <emphasis>not</emphasis> the model backing the tree view to which this cell
|
||||||
* <emphasis>not</emphasis> the model backing the tree view to
|
* renderer is attached.
|
||||||
* which this cell renderer is attached.
|
|
||||||
*
|
*
|
||||||
* Since: 2.6
|
* Since: 2.6
|
||||||
*/
|
*/
|
||||||
@ -113,11 +111,10 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
|||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GtkCellRendererCombo:has_entry:
|
* GtkCellRendererCombo:has-entry:
|
||||||
*
|
*
|
||||||
* If the :has_entry property is %TRUE, the cell renderer will
|
* If %TRUE, the cell renderer will include an entry and allow to enter values
|
||||||
* include an entry and allow to enter values other than the ones
|
* other than the ones in the popup list.
|
||||||
* in the popup list.
|
|
||||||
*
|
*
|
||||||
* Since: 2.6
|
* Since: 2.6
|
||||||
*/
|
*/
|
||||||
@ -125,7 +122,7 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
|||||||
PROP_HAS_ENTRY,
|
PROP_HAS_ENTRY,
|
||||||
g_param_spec_boolean ("has_entry",
|
g_param_spec_boolean ("has_entry",
|
||||||
P_("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,
|
TRUE,
|
||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user