mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
More HBCI work.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10262 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
8e3debdae2
commit
a59e9155c7
@ -690,6 +690,7 @@ gnc_hbci_trans_dialog_execute(HBCITransDialog *td, AB_BANKING *api,
|
||||
/* Watch out! The job *has* to be removed from the queue
|
||||
here because otherwise it might be executed again. */
|
||||
AB_Banking_DequeueJob(api, job);
|
||||
/* AB_Banking_DequeueJob(api, job); */
|
||||
return successful;
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ gnc_hbci_getbalance (GtkWidget *parent, Account *gnc_acc)
|
||||
if (!gnc_AB_BANKING_execute (parent, api, job, interactor)) {
|
||||
|
||||
/* AB_BANKING_executeOutbox failed. */
|
||||
AB_Banking_DequeueJob(api, job);
|
||||
/* AB_Banking_DequeueJob(api, job); FIXME: Which one to use here? */
|
||||
/* FIXME: free unneeded data */
|
||||
return;
|
||||
}
|
||||
@ -115,7 +115,7 @@ gnc_hbci_getbalance (GtkWidget *parent, Account *gnc_acc)
|
||||
job);
|
||||
|
||||
/* Clean up after ourselves. */
|
||||
AB_Banking_DequeueJob(api, job);
|
||||
AB_Banking_DelFinishedJob(api, job);
|
||||
gnc_AB_BANKING_fini (api);
|
||||
GNCInteractor_hide (interactor);
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ gnc_hbci_gettrans (GtkWidget *parent, Account *gnc_acc)
|
||||
gnc_hbci_gettrans_final(parent, gnc_acc, job, FALSE);
|
||||
|
||||
/* Clean up behind ourself. */
|
||||
AB_Banking_DequeueJob(api, job);
|
||||
AB_Banking_DelFinishedJob(api, job);
|
||||
gnc_AB_BANKING_fini (api);
|
||||
GNCInteractor_hide (interactor);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user