diff options
author | Milan Crha <mcrha@redhat.com> | 2010-11-18 20:35:36 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:01 +0800 |
commit | 12a91dbb21f2a052d26460c9aad30835fd17456b (patch) | |
tree | 5dede0765bb0f74f363614a05210e533655e0c39 /widgets | |
parent | 9e833a704ce57e4f571d0da91e795e6ae7cc2469 (diff) | |
download | gsoc2013-evolution-12a91dbb21f2a052d26460c9aad30835fd17456b.tar.gz gsoc2013-evolution-12a91dbb21f2a052d26460c9aad30835fd17456b.tar.zst gsoc2013-evolution-12a91dbb21f2a052d26460c9aad30835fd17456b.zip |
Bug #633779 - GtkComboBoxText issues
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-dateedit.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/widgets/misc/e-dateedit.c b/widgets/misc/e-dateedit.c index a1a385ca70..d0b9b7ea8f 100644 --- a/widgets/misc/e-dateedit.c +++ b/widgets/misc/e-dateedit.c @@ -578,17 +578,6 @@ create_children (EDateEdit *dedit) "has-entry", TRUE, "entry-text-column", 0, NULL); - - { - GtkCellRenderer *cell; - - gtk_cell_layout_clear (GTK_CELL_LAYOUT (priv->time_combo)); - - cell = gtk_cell_renderer_text_new (); - gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (priv->time_combo), cell, TRUE); - gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (priv->time_combo), cell, "text", 0, NULL); - } - #else priv->time_combo = gtk_combo_box_entry_new_with_model ( GTK_TREE_MODEL (time_store), 0); |