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
This commit is contained in:
David Hampton 2002-06-10 04:58:04 +00:00
parent 919425012c
commit b758e720c7

View File

@ -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));