aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-24 07:38:11 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-24 07:38:11 +0800
commit735213b4cd031c53106ba2cf70c2d0ecd85cfdd0 (patch)
tree5d88a8edacd06c8fbb9c34647cdd3c7e167ee173 /widgets/table
parent541743031461539cddc82586f0be5c573ed4e956 (diff)
downloadgsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.tar
gsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.tar.gz
gsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.tar.bz2
gsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.tar.lz
gsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.tar.xz
gsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.tar.zst
gsoc2013-evolution-735213b4cd031c53106ba2cf70c2d0ecd85cfdd0.zip
Fixed the remove column callback.
2000-05-23 Christopher James Lahey <clahey@helixcode.com> * e-table-header-item.c: Fixed the remove column callback. svn path=/trunk/; revision=3187
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/e-table-header-item.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c
index 436b2c8283..7fc192ca20 100644
--- a/widgets/table/e-table-header-item.c
+++ b/widgets/table/e-table-header-item.c
@@ -1041,6 +1041,7 @@ ethi_popup_group_box(GtkWidget *widget, EthiHeaderInfo *info)
static void
ethi_popup_remove_column(GtkWidget *widget, EthiHeaderInfo *info)
{
+ e_table_header_remove(info->ethi->eth, info->col);
}
static void
@@ -1075,7 +1076,7 @@ static EPopupMenu ethi_context_menu [] = {
{ "Group By This Field", NULL, GTK_SIGNAL_FUNC(ethi_popup_group_field), 0},
{ "Group By Box", NULL, GTK_SIGNAL_FUNC(ethi_popup_group_box), 1},
{ "", NULL, GTK_SIGNAL_FUNC(NULL), 1},
- { "Remove This Column", NULL, GTK_SIGNAL_FUNC(ethi_popup_remove_column), 1},
+ { "Remove This Column", NULL, GTK_SIGNAL_FUNC(ethi_popup_remove_column), 0},
{ "Field Chooser", NULL, GTK_SIGNAL_FUNC(ethi_popup_field_chooser), 1},
{ "", NULL, GTK_SIGNAL_FUNC(NULL), 1},
{ "Alignment", NULL, GTK_SIGNAL_FUNC(ethi_popup_alignment), 1},