aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/email-custom-header
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-02-14 12:25:11 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-02-14 12:25:11 +0800
commit9c28e70fb0e7dc3eea887938651ef66cceb68e05 (patch)
tree425dad2507095fea467d0a1e61f12741d9c950ec /plugins/email-custom-header
parent286124a8306b749c1b0d084d2eec8f0317b772fb (diff)
downloadgsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.tar
gsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.tar.gz
gsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.tar.bz2
gsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.tar.lz
gsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.tar.xz
gsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.tar.zst
gsoc2013-evolution-9c28e70fb0e7dc3eea887938651ef66cceb68e05.zip
** Fixes part of bug #564229
2009-02-13 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #564229 * e-util/e-plugin-ui.c (plugin_ui_hook_class_init): Initialize the EPluginUI registry during class initialization, so that it's sure to be there when we need it. * plugins/email-custom-header/email-custom-header.c: (e_plugin_lib_get_configure_widget): Do not use uninitialized variable. svn path=/trunk/; revision=37265
Diffstat (limited to 'plugins/email-custom-header')
-rw-r--r--plugins/email-custom-header/ChangeLog7
-rw-r--r--plugins/email-custom-header/email-custom-header.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/email-custom-header/ChangeLog b/plugins/email-custom-header/ChangeLog
index e03816e2cd..b10181369b 100644
--- a/plugins/email-custom-header/ChangeLog
+++ b/plugins/email-custom-header/ChangeLog
@@ -1,3 +1,10 @@
+2009-02-13 Milan Crha <mcrha@redhat.com>
+
+ ** Fixes part of bug #564229
+
+ * email-custom-header.c: (e_plugin_lib_get_configure_widget):
+ Do not use uninitialized variable.
+
2009-02-02 Takao Fujiwara <takao.fujiwara@sun.com>
Reviewed by Srinivasa Ragavan <sragavan@novell.com>
diff --git a/plugins/email-custom-header/email-custom-header.c b/plugins/email-custom-header/email-custom-header.c
index 69bae1143f..233804cd13 100644
--- a/plugins/email-custom-header/email-custom-header.c
+++ b/plugins/email-custom-header/email-custom-header.c
@@ -903,7 +903,7 @@ e_plugin_lib_get_configure_widget (EPlugin *epl)
gtk_tree_view_set_model (GTK_TREE_VIEW (cd->treeview), GTK_TREE_MODEL (cd->store));
renderer = gtk_cell_renderer_text_new ();
- gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (cd->treeview), -1, _("Key"),
+ col_pos = gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (cd->treeview), -1, _("Key"),
renderer, "text", HEADER_KEY_COLUMN, NULL);
col = gtk_tree_view_get_column (GTK_TREE_VIEW (cd->treeview), col_pos -1);
gtk_tree_view_column_set_resizable (col, TRUE);