From b758e720c73d1a8cbcad209898e65e2602396705 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Mon, 10 Jun 2002 04:58:04 +0000 Subject: [PATCH] Remove the 'tax information' item from the account window pop-up menu. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6957 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/window-acct-tree.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/gnome/window-acct-tree.c b/src/gnome/window-acct-tree.c index ce8dbce829..362bcb1022 100644 --- a/src/gnome/window-acct-tree.c +++ b/src/gnome/window-acct-tree.c @@ -565,13 +565,6 @@ gnc_acct_tree_window_menu_delete_account_cb (GtkWidget *widget, gnc_acct_tree_window_delete_common (account); } -static void -gnc_acct_tree_window_menu_tax_info_cb (GtkWidget * widget, - GnomeMDIChild * child) { - GNCMDIChildInfo * mc = gtk_object_get_user_data(GTK_OBJECT(child)); - gnc_tax_info_dialog(GTK_WIDGET(mc->app)); -} - static void gnc_acct_tree_window_menu_scrub_cb(GtkWidget * widget, GnomeMDIChild * child) { @@ -992,15 +985,6 @@ gnc_acct_tree_window_create_menu(GNCAcctTreeWin * main_info, }, GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_SUBTREE(N_("_Check & Repair"), dup_scrub), - GNOMEUIINFO_SEPARATOR, - { - GNOME_APP_UI_ITEM, - N_("Tax Information"), - N_("Setup tax information for all income and expense accounts"), - gnc_acct_tree_window_menu_tax_info_cb, NULL, NULL, - GNOME_APP_PIXMAP_NONE, NULL, - 0, 0, NULL - }, GNOMEUIINFO_END }; GnomeUIInfo * dup_accts = g_memdup(accountsmenu, sizeof(accountsmenu));