diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-09 13:15:14 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-09 13:15:14 +0800 |
commit | a0522bcc255a194232d46dd52ba4a719c66d42f6 (patch) | |
tree | 17df9013608df6d36b4413e58860de4b675492e0 /widgets/table | |
parent | 44628427f8c59beebd83979376cb87d64fd7da83 (diff) | |
download | gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.tar gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.tar.gz gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.tar.bz2 gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.tar.lz gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.tar.xz gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.tar.zst gsoc2013-evolution-a0522bcc255a194232d46dd52ba4a719c66d42f6.zip |
Changed e_popup_menu_run call to match the new arguments.
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* e-table-header-item.c: Changed e_popup_menu_run call to match
the new arguments.
svn path=/trunk/; revision=4628
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-header-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index fc4947293e..0ba2cfc730 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -1179,7 +1179,7 @@ ethi_header_context_menu (ETableHeaderItem *ethi, GdkEventButton *event) info->ethi = ethi; info->col = ethi_find_col_by_x (ethi, event->x); col = e_table_header_get_column (ethi->eth, info->col); - e_popup_menu_run (ethi_context_menu, event, 1 + (col->sortable ? 0 : 2), info); + e_popup_menu_run (ethi_context_menu, event, 1 + (col->sortable ? 0 : 2), 0, info); } static void |