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:
Christian Stimming 2004-09-11 19:35:06 +00:00
parent 8e3debdae2
commit a59e9155c7
3 changed files with 4 additions and 3 deletions

View File

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

View File

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

View File

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