summaryrefslogtreecommitdiff
path: root/gtk/gtkcombobox.h
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-05-06 04:06:35 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-05-06 04:06:35 +0000
commit3d01ab5f5a06838c4e371fe7f4a47647f82a0e83 (patch)
treeebe2e9dc688a43b77c1c359d871bf7f45d40b626 /gtk/gtkcombobox.h
parent56b202f4613d7dfd5c96fd1085d4fa312d2ee092 (diff)
downloadgtk+-3d01ab5f5a06838c4e371fe7f4a47647f82a0e83.tar.gz
Add missing getters for readwrite properies. (#135649)
Thu May 6 00:02:21 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtkcombobox.c (gtk_combo_box_get_wrap_width): (gtk_combo_box_get_row_span_column): (gtk_combo_box_get_column_span_column): Add missing getters for readwrite properies. (#135649)
Diffstat (limited to 'gtk/gtkcombobox.h')
-rw-r--r--gtk/gtkcombobox.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkcombobox.h b/gtk/gtkcombobox.h
index c444bbec0a..a0b2a5df99 100644
--- a/gtk/gtkcombobox.h
+++ b/gtk/gtkcombobox.h
@@ -66,10 +66,13 @@ GtkWidget *gtk_combo_box_new (void);
GtkWidget *gtk_combo_box_new_with_model (GtkTreeModel *model);
/* grids */
+gint gtk_combo_box_get_wrap_width (GtkComboBox *combo_box);
void gtk_combo_box_set_wrap_width (GtkComboBox *combo_box,
gint width);
+gint gtk_combo_box_get_row_span_column (GtkComboBox *combo_box);
void gtk_combo_box_set_row_span_column (GtkComboBox *combo_box,
gint row_span);
+gint gtk_combo_box_get_column_span_column (GtkComboBox *combo_box);
void gtk_combo_box_set_column_span_column (GtkComboBox *combo_box,
gint column_span);