Revert "Bug 720646 - New Book Tabs on Windows"

This reverts commit 5305c7909e.

This was incomplete and not meant to be pushed yet.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23612 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2013-12-24 17:08:50 +00:00
parent 5305c7909e
commit 07e2106386
8 changed files with 8 additions and 11 deletions

View File

@ -578,15 +578,12 @@ gnc_dialog_run (GtkDialog *dialog, const gchar *pref_name)
* imported/entered, since they can affect how transactions are created
* Note: This dialog is modal! */
gboolean
gnc_new_book_option_display (GtkWidget *parent)
gnc_new_book_option_display (void)
{
GtkWidget *window;
gint result = GTK_RESPONSE_HELP;
window = gnc_book_options_dialog_cb (TRUE, _( "New Book Options"));
if (parent)
gtk_window_set_transient_for (GTK_WINDOW(window), GTK_WINDOW(parent));
if (window)
{
/* close dialog and proceed unless help button selected */

View File

@ -103,6 +103,6 @@ gnc_dialog_run(GtkDialog *dialog, const gchar *pref_key);
* dialog so user can specify options, before any transactions can be
* imported/entered, since they can affect how transactions are created
* Note: This dialog is modal! */
gboolean gnc_new_book_option_display (GtkWidget *parent);
gboolean gnc_new_book_option_display (void);
#endif /* DIALOG_UTILS_H */

View File

@ -460,7 +460,7 @@ on_choose_account_categories_prepare (hierarchy_data *data)
/* Before creating transactions, if this is a new book, let user specify
* book options, since they affect how transactions are created */
if (data->new_book)
data->new_book = gnc_new_book_option_display (data->dialog);
data->new_book = gnc_new_book_option_display ();
if (!data->account_list_added)
{

View File

@ -224,7 +224,7 @@ gnc_file_aqbanking_import(const gchar *aqbanking_importername,
/* Before importing the results, if this is a new book, let user specify
* book options, since they affect how transactions are created */
if (gnc_is_new_book())
gnc_new_book_option_display(gnc_ui_get_toplevel());
gnc_new_book_option_display();
/* Import the results */
ieci = gnc_ab_import_context(context, AWAIT_TRANSACTIONS,

View File

@ -437,7 +437,7 @@ csv_import_assistant_summary_page_prepare (GtkAssistant *assistant,
/* Before creating accounts, if this is a new book, let user specify
* book options, since they affect how transactions are created */
if (info->new_book)
info->new_book = gnc_new_book_option_display(info->window);
info->new_book = gnc_new_book_option_display();
if (!g_strcmp0(info->error, "") == 0)
{

View File

@ -1445,7 +1445,7 @@ csv_import_trans_assistant_match_page_prepare (GtkAssistant *assistant,
/* Before creating transactions, if this is a new book, let user specify
* book options, since they affect how transactions are created */
if (info->new_book)
info->new_book = gnc_new_book_option_display(info->window);
info->new_book = gnc_new_book_option_display();
/* Create transactions from the parsed data, first time with FALSE
Subsequent times with TRUE */

View File

@ -901,7 +901,7 @@ int ofx_proc_account_cb(struct OfxAccountData data, void * account_user_data)
* calling 'gnc_import_select_account', allow the user to set book
* options. */
if (new_book)
new_book = gnc_new_book_option_display(gnc_ui_get_toplevel());
new_book = gnc_new_book_option_display();
gnc_utf8_strip_invalid(data.account_name);
gnc_utf8_strip_invalid(data.account_id);

View File

@ -2996,7 +2996,7 @@ gnc_ui_qif_import_convert_progress_prepare(GtkAssistant *assistant,
/* Before creating transactions, if this is a new book, let user specify
* book options, since they affect how transactions are created */
if (wind->new_book)
wind->new_book = gnc_new_book_option_display(wind->window);
wind->new_book = gnc_new_book_option_display();
}