diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-11-07 07:43:57 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-11-07 07:43:57 +0800 |
commit | 93e7a43d68cc2138eb4b98f83f7d4695e55afa8b (patch) | |
tree | ffc8a19568f6b8a43e8cdf71b0aac58a91a5b410 /widgets/table | |
parent | a0978074b0e4835d49dd9dc894e6de9883e968f2 (diff) | |
download | gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.tar gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.tar.gz gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.tar.bz2 gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.tar.lz gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.tar.xz gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.tar.zst gsoc2013-evolution-93e7a43d68cc2138eb4b98f83f7d4695e55afa8b.zip |
Changed this to match the new EPopupMenu structre.
2000-11-06 Christopher James Lahey <clahey@helixcode.com>
* e-table-header-item.c: Changed this to match the new EPopupMenu
structre.
svn path=/trunk/; revision=6467
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-header-item.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index 320cfe14a7..14ac50f5aa 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -1325,22 +1325,22 @@ ethi_popup_customize_view(GtkWidget *widget, EthiHeaderInfo *info) /* Bit 2 is disabled if not "sortable". */ /* Bit 4 is disabled if we don't have a pointer to our table object. */ static EPopupMenu ethi_context_menu [] = { - { N_("Sort Ascending"), NULL, GTK_SIGNAL_FUNC(ethi_popup_sort_ascending), 2}, - { N_("Sort Descending"), NULL, GTK_SIGNAL_FUNC(ethi_popup_sort_descending), 2}, - { N_("Unsort"), NULL, GTK_SIGNAL_FUNC(ethi_popup_unsort), 0}, - { "", NULL, GTK_SIGNAL_FUNC(NULL), 0}, - { N_("Group By This Field"), NULL, GTK_SIGNAL_FUNC(ethi_popup_group_field), 0}, - { N_("Group By Box"), NULL, GTK_SIGNAL_FUNC(ethi_popup_group_box), 1}, - { "", NULL, GTK_SIGNAL_FUNC(NULL), 1}, - { N_("Remove This Column"), NULL, GTK_SIGNAL_FUNC(ethi_popup_remove_column), 0}, - { N_("Field Chooser"), NULL, GTK_SIGNAL_FUNC(ethi_popup_field_chooser), 0}, - { "", NULL, GTK_SIGNAL_FUNC(NULL), 1}, - { N_("Alignment"), NULL, GTK_SIGNAL_FUNC(ethi_popup_alignment), 1}, - { N_("Best Fit"), NULL, GTK_SIGNAL_FUNC(ethi_popup_best_fit), 2}, - { N_("Format Columns..."), NULL, GTK_SIGNAL_FUNC(ethi_popup_format_columns), 1}, - { "", NULL, GTK_SIGNAL_FUNC(NULL), 1}, - { N_("Customize Current View..."), NULL, GTK_SIGNAL_FUNC(ethi_popup_customize_view), 4}, - { NULL, NULL, NULL, 0 } + { N_("Sort Ascending"), NULL, GTK_SIGNAL_FUNC(ethi_popup_sort_ascending), NULL, 2}, + { N_("Sort Descending"), NULL, GTK_SIGNAL_FUNC(ethi_popup_sort_descending), NULL, 2}, + { N_("Unsort"), NULL, GTK_SIGNAL_FUNC(ethi_popup_unsort), NULL, 0}, + { "", NULL, GTK_SIGNAL_FUNC(NULL), NULL, 0}, + { N_("Group By This Field"), NULL, GTK_SIGNAL_FUNC(ethi_popup_group_field), NULL, 0}, + { N_("Group By Box"), NULL, GTK_SIGNAL_FUNC(ethi_popup_group_box), NULL, 1}, + { "", NULL, GTK_SIGNAL_FUNC(NULL), NULL, 1}, + { N_("Remove This Column"), NULL, GTK_SIGNAL_FUNC(ethi_popup_remove_column), NULL, 0}, + { N_("Field Chooser"), NULL, GTK_SIGNAL_FUNC(ethi_popup_field_chooser), NULL, 0}, + { "", NULL, GTK_SIGNAL_FUNC(NULL), NULL, 1}, + { N_("Alignment"), NULL, GTK_SIGNAL_FUNC(ethi_popup_alignment), NULL, 1}, + { N_("Best Fit"), NULL, GTK_SIGNAL_FUNC(ethi_popup_best_fit), NULL, 2}, + { N_("Format Columns..."), NULL, GTK_SIGNAL_FUNC(ethi_popup_format_columns), NULL, 1}, + { "", NULL, GTK_SIGNAL_FUNC(NULL), NULL, 1}, + { N_("Customize Current View..."), NULL, GTK_SIGNAL_FUNC(ethi_popup_customize_view), NULL, 4}, + { NULL, NULL, NULL, NULL, 0 } }; static void |