diff options
author | Benjamin Otte <otte@redhat.com> | 2010-10-21 17:31:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:50:04 +0800 |
commit | 8563661b4e952167e01e21252b4b72e524b2eae4 (patch) | |
tree | e03fc9aac1a9585c7dc70ea079ef0c85694e7d96 /widgets/table/e-table.c | |
parent | d98a5c50d468a1e3af48a8d4d2a5c8ad37e3d2df (diff) | |
download | gsoc2013-evolution-8563661b4e952167e01e21252b4b72e524b2eae4.tar.gz gsoc2013-evolution-8563661b4e952167e01e21252b4b72e524b2eae4.tar.zst gsoc2013-evolution-8563661b4e952167e01e21252b4b72e524b2eae4.zip |
e-table: Don't push/pop colormaps
It's not necessary anymore.
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r-- | widgets/table/e-table.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index 6f17c67610..4cbd6556af 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -1647,8 +1647,6 @@ et_real_construct (ETable *e_table, ETableModel *etm, ETableExtras *ete, e_table->model = etm; g_object_ref (etm); - gtk_widget_push_colormap (gdk_rgb_get_colormap ()); - connect_header (e_table, state); e_table->horizontal_scrolling = specification->horizontal_scrolling; e_table->horizontal_resize = specification->horizontal_resize; @@ -1713,8 +1711,6 @@ et_real_construct (ETable *e_table, ETableModel *etm, ETableExtras *ete, GTK_FILL | GTK_EXPAND, 0, 0); - gtk_widget_pop_colormap (); - g_object_unref (ete); return e_table; |