[Gnucash-changes] r14147 - gnucash/trunk - Hide the "QSF Import" for the 2.0.0 release because it is not yet

Christian Stimming cstim at cvs.gnucash.org
Sun May 21 16:03:00 EDT 2006


Author: cstim
Date: 2006-05-21 16:02:58 -0400 (Sun, 21 May 2006)
New Revision: 14147
Trac: http://svn.gnucash.org/trac/changeset/14147

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c
   gnucash/trunk/src/gnome/ui/gnc-plugin-basic-commands-ui.xml
Log:
Hide the "QSF Import" for the 2.0.0 release because it is not yet
finished. Can be activated again in the next developing HEAD branch.



Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-05-21 13:04:43 UTC (rev 14146)
+++ gnucash/trunk/ChangeLog	2006-05-21 20:02:58 UTC (rev 14147)
@@ -1,5 +1,10 @@
 2006-05-21  Christian Stimming  <stimming at tuhh.de>
 
+	* src/gnome/gnc-plugin-basic-commands.c,
+	src/gnome/ui/gnc-plugin-basic-commands-ui.xml: Hide the "QSF
+	Import" for the 2.0.0 release because it is not yet finished. Can
+	be activated again in the next developing HEAD branch.
+
 	* po/ro.po: Initial Romanian translation by Danny Fischer
 	<dan.pescaru at gmail.com>
 

Modified: gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c
===================================================================
--- gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c	2006-05-21 13:04:43 UTC (rev 14146)
+++ gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c	2006-05-21 20:02:58 UTC (rev 14147)
@@ -56,7 +56,9 @@
 #include "gnc-session.h"
 
 /* This static indicates the debugging module that this .o belongs to.  */
+#ifdef QSF_IMPORT_NO_LONGER_BROKEN
 static QofLogModule log_module = GNC_MOD_GUI;
+#endif
 
 static void gnc_plugin_basic_commands_class_init (GncPluginBasicCommandsClass *klass);
 static void gnc_plugin_basic_commands_init (GncPluginBasicCommands *plugin);
@@ -67,7 +69,9 @@
 static void gnc_main_window_cmd_file_open (GtkAction *action, GncMainWindowActionData *data);
 static void gnc_main_window_cmd_file_save (GtkAction *action, GncMainWindowActionData *data);
 static void gnc_main_window_cmd_file_save_as (GtkAction *action, GncMainWindowActionData *data);
+#ifdef QSF_IMPORT_NO_LONGER_BROKEN
 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);
 static void gnc_main_window_cmd_file_chart_export (GtkAction *action, GncMainWindowActionData *data);
 static void gnc_main_window_cmd_edit_tax_options (GtkAction *action, GncMainWindowActionData *data);
@@ -104,10 +108,12 @@
   { "FileSaveAsAction", GTK_STOCK_SAVE_AS, N_("Save _As..."), "<shift><control>s",
     NULL,
     G_CALLBACK (gnc_main_window_cmd_file_save_as) },
+#ifdef QSF_IMPORT_NO_LONGER_BROKEN
   { "FileImportQSFAction", GTK_STOCK_CONVERT,
     N_("_QSF Import"), NULL,
     N_("Import a QSF object file"),
     G_CALLBACK (gnc_main_window_cmd_file_qsf_import) },
+#endif
   { "FileExportAccountsAction", GTK_STOCK_CONVERT,
     N_("Export _Accounts"), NULL,
     N_("Export the account hierarchy to a new GnuCash datafile"),
@@ -345,7 +351,7 @@
   gnc_window_set_progressbar_window (NULL);
   /* FIXME GNOME 2 Port (update the title etc.) */
 }
-
+#ifdef QSF_IMPORT_NO_LONGER_BROKEN
 static void
 qsf_file_select_ok(GtkWidget *w, GtkFileSelection *fs )
 {
@@ -383,7 +389,7 @@
   gtk_widget_show (file_select);
   gnc_window_set_progressbar_window(NULL);
 }
-
+#endif
 static void
 gnc_main_window_cmd_file_export_accounts (GtkAction *action, GncMainWindowActionData *data)
 {

Modified: gnucash/trunk/src/gnome/ui/gnc-plugin-basic-commands-ui.xml
===================================================================
--- gnucash/trunk/src/gnome/ui/gnc-plugin-basic-commands-ui.xml	2006-05-21 13:04:43 UTC (rev 14146)
+++ gnucash/trunk/src/gnome/ui/gnc-plugin-basic-commands-ui.xml	2006-05-21 20:02:58 UTC (rev 14147)
@@ -15,9 +15,9 @@
         <menuitem name="FileSave" action="FileSaveAction"/>
         <menuitem name="FileSaveAs" action="FileSaveAsAction"/>
       </placeholder>
-      <menu name="FileImport" action="FileImportAction">
+      <!-- menu name="FileImport" action="FileImportAction">
         <menuitem name="FileImportQSF" action="FileImportQSFAction"/>
-      </menu>
+      </menu -->
       <menu name="FileExport" action="FileExportAction">
         <menuitem name="FileExportAccounts" action="FileExportAccountsAction"/>
         <menuitem name="FileExportChart" action="FileExportChartAction"/>



More information about the gnucash-changes mailing list