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:
Christian Stimming 2006-05-22 18:14:21 +00:00
parent 6b1efe5f06
commit 36309d980a
3 changed files with 12 additions and 1 deletions

View File

@ -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,

View File

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

View File

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