mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Hide the "Export account chart as QSF" as well. Not ready for 2.0.0
due to e.g. bug#341559. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14148 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
6b1efe5f06
commit
36309d980a
@ -1,3 +1,8 @@
|
||||
2006-05-22 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/gnome/gnc-plugin-basic-commands.c: Hide the "Export account
|
||||
chart as QSF" as well. Not ready for 2.0.0 due to e.g. bug#341559.
|
||||
|
||||
2006-05-21 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/gnome/gnc-plugin-basic-commands.c,
|
||||
|
@ -73,7 +73,9 @@ static void gnc_main_window_cmd_file_save_as (GtkAction *action, GncMainWindowAc
|
||||
static void gnc_main_window_cmd_file_qsf_import (GtkAction *action, GncMainWindowActionData *data);
|
||||
#endif
|
||||
static void gnc_main_window_cmd_file_export_accounts (GtkAction *action, GncMainWindowActionData *data);
|
||||
#ifdef QSF_EXPORT_NO_LONGER_BROKEN
|
||||
static void gnc_main_window_cmd_file_chart_export (GtkAction *action, GncMainWindowActionData *data);
|
||||
#endif
|
||||
static void gnc_main_window_cmd_edit_tax_options (GtkAction *action, GncMainWindowActionData *data);
|
||||
static void gnc_main_window_cmd_actions_mortgage_loan (GtkAction *action, GncMainWindowActionData *data);
|
||||
static void gnc_main_window_cmd_actions_scheduled_transaction_editor (GtkAction *action, GncMainWindowActionData *data);
|
||||
@ -118,10 +120,12 @@ static GtkActionEntry gnc_plugin_actions [] = {
|
||||
N_("Export _Accounts"), NULL,
|
||||
N_("Export the account hierarchy to a new GnuCash datafile"),
|
||||
G_CALLBACK (gnc_main_window_cmd_file_export_accounts) },
|
||||
#ifdef QSF_EXPORT_NO_LONGER_BROKEN
|
||||
{ "FileExportChartAction", GTK_STOCK_CONVERT,
|
||||
N_("Export _Chart of Accounts to QSF"), NULL,
|
||||
N_("Export the chart of accounts for a date with balances as QSF"),
|
||||
G_CALLBACK (gnc_main_window_cmd_file_chart_export) },
|
||||
#endif
|
||||
|
||||
/* Edit menu */
|
||||
|
||||
@ -402,6 +406,7 @@ gnc_main_window_cmd_file_export_accounts (GtkAction *action, GncMainWindowAction
|
||||
/* gnc_refresh_main_window_info (); */
|
||||
}
|
||||
|
||||
#ifdef QSF_EXPORT_NO_LONGER_BROKEN
|
||||
static void
|
||||
gnc_main_window_cmd_file_chart_export (GtkAction *action, GncMainWindowActionData *data)
|
||||
{
|
||||
@ -413,6 +418,7 @@ gnc_main_window_cmd_file_chart_export (GtkAction *action, GncMainWindowActionDat
|
||||
/* FIXME GNOME 2 Port (update the title etc.) */
|
||||
/* gnc_refresh_main_window_info (); */
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
gnc_main_window_cmd_edit_tax_options (GtkAction *action, GncMainWindowActionData *data)
|
||||
|
@ -20,7 +20,7 @@
|
||||
</menu -->
|
||||
<menu name="FileExport" action="FileExportAction">
|
||||
<menuitem name="FileExportAccounts" action="FileExportAccountsAction"/>
|
||||
<menuitem name="FileExportChart" action="FileExportChartAction"/>
|
||||
<!-- menuitem name="FileExportChart" action="FileExportChartAction"/ -->
|
||||
</menu>
|
||||
</menu>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user