mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Transient-for for reconcile information dialog.
This commit is contained in:
parent
e186d77a16
commit
36fa8d57bf
@ -182,7 +182,8 @@ gtu_sr_handle_exchange_rate (GncTreeViewSplitReg *view, gnc_numeric amount, Tran
|
||||
rate_split = gtu_sr_get_rate_from_db (reg_comm, xfer_comm);
|
||||
|
||||
/* create the exchange-rate dialog */
|
||||
xfer = gnc_xfer_dialog (NULL, NULL);
|
||||
|
||||
xfer = gnc_xfer_dialog (GTK_WIDGET (view), NULL);
|
||||
|
||||
gnc_xfer_dialog_is_exchange_dialog (xfer, &rate_split);
|
||||
|
||||
|
@ -2152,7 +2152,7 @@ recnFinishCB (GtkAction *action, RecnWindow *recnData)
|
||||
Account *payment_account;
|
||||
XferDialog *xfer;
|
||||
|
||||
xfer = gnc_xfer_dialog(NULL, account);
|
||||
xfer = gnc_xfer_dialog (GTK_WIDGET (recnData->window), account);
|
||||
|
||||
gnc_xfer_dialog_set_amount(xfer, gnc_numeric_neg (recnData->new_ending));
|
||||
|
||||
|
@ -2096,7 +2096,7 @@ recnFinishCB (GtkAction *action, RecnWindow2 *recnData)
|
||||
Account *payment_account;
|
||||
XferDialog *xfer;
|
||||
|
||||
xfer = gnc_xfer_dialog (NULL, account);
|
||||
xfer = gnc_xfer_dialog (GTK_WIDGET (recnData->window), account);
|
||||
|
||||
gnc_xfer_dialog_set_amount (xfer, gnc_numeric_neg (recnData->new_ending));
|
||||
|
||||
|
@ -1250,7 +1250,7 @@ gnc_split_register_xfer_dialog(SplitRegister *reg, Transaction *txn,
|
||||
cur = reg->table->current_cursor;
|
||||
|
||||
/* Create the exchange rate dialog. */
|
||||
xfer = gnc_xfer_dialog(NULL, NULL);
|
||||
xfer = gnc_xfer_dialog(GTK_WIDGET (reg), NULL);
|
||||
g_return_val_if_fail(xfer, NULL);
|
||||
|
||||
/* Set the description. */
|
||||
|
Loading…
Reference in New Issue
Block a user