diff options
author | Milan Crha <mcrha@redhat.com> | 2011-01-24 20:30:38 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:26 +0800 |
commit | fd695a3677d41d145709f69eb2f8335df5178098 (patch) | |
tree | c90b60224247981d91221d04136501488433a3f0 /widgets | |
parent | 7da22c1960fb1516963429fe9827af2624af7c98 (diff) | |
download | gsoc2013-evolution-fd695a3677d41d145709f69eb2f8335df5178098.tar.gz gsoc2013-evolution-fd695a3677d41d145709f69eb2f8335df5178098.tar.zst gsoc2013-evolution-fd695a3677d41d145709f69eb2f8335df5178098.zip |
Various critical warnings about comp-editor-pages and date edit
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-dateedit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/misc/e-dateedit.c b/widgets/misc/e-dateedit.c index 8aa048cb28..0a2b744372 100644 --- a/widgets/misc/e-dateedit.c +++ b/widgets/misc/e-dateedit.c @@ -570,6 +570,7 @@ create_children (EDateEdit *dedit) time_store = gtk_list_store_new (1, G_TYPE_STRING); priv->time_combo = gtk_combo_box_new_with_model_and_entry ( GTK_TREE_MODEL (time_store)); + gtk_combo_box_set_entry_text_column (GTK_COMBO_BOX (priv->time_combo), 0); g_object_unref (time_store); child = gtk_bin_get_child (GTK_BIN (priv->time_combo)); |