diff --git a/src/import-export/hbci/druid-hbci-initial.c b/src/import-export/hbci/druid-hbci-initial.c index a60fb19b54..f91e77e8dd 100644 --- a/src/import-export/hbci/druid-hbci-initial.c +++ b/src/import-export/hbci/druid-hbci-initial.c @@ -222,8 +222,8 @@ update_accountlist (HBCIInitialInfo *info) else printf("update_accountlist: Oops, account list from AB_Banking is NULL.\n"); - // printf("update_accountlist: HBCI hash has %d entries.\n", g_hash_table_size(info->hbci_hash)); - // printf("update_accountlist: GNC hash has %d entries.\n", g_hash_table_size(info->gnc_hash)); + /* printf("update_accountlist: HBCI hash has %d entries.\n", g_hash_table_size(info->hbci_hash)); */ + /* printf("update_accountlist: GNC hash has %d entries.\n", g_hash_table_size(info->gnc_hash)); */ g_hash_table_thaw (info->hbci_hash); gtk_clist_thaw (GTK_CLIST (info->accountlist)); diff --git a/src/import-export/hbci/gnc-hbci-utils.c b/src/import-export/hbci/gnc-hbci-utils.c index d8f856356c..4814ec321d 100644 --- a/src/import-export/hbci/gnc-hbci-utils.c +++ b/src/import-export/hbci/gnc-hbci-utils.c @@ -385,7 +385,7 @@ static void gnc_hbci_printresult(HBCI_Outbox *outbox, GNCInteractor *inter) } } n=GWEN_DB_GetNextGroup(n); - } // while + } /* while */ GWEN_DB_Group_free(rsp); } diff --git a/src/import-export/hbci/hbci-interaction.c b/src/import-export/hbci/hbci-interaction.c index f71012e7d1..6d8646ccbf 100644 --- a/src/import-export/hbci/hbci-interaction.c +++ b/src/import-export/hbci/hbci-interaction.c @@ -598,8 +598,8 @@ static GWEN_TYPE_UINT32 progressStartCB(AB_BANKING *ab, const char *utf8title, 0.0); data->action_max = total; GNCInteractor_setRunning(data); - printf("progressStartCB: Action \"%s\" started, total %d.\n", - text, total); + /* printf("progressStartCB: Action \"%s\" started, total %d.\n", + text, total); */ /* Show the dialog */ GNCInteractor_show(data); @@ -623,8 +623,8 @@ static int progressAdvanceCB(AB_BANKING *ab, GWEN_TYPE_UINT32 id, } if (progress != AB_BANKING_PROGRESS_NONE) { - printf("progressLogCB: Progress set to %d out of %f.\n", - progress, data->action_max); + /* printf("progressLogCB: Progress set to %d out of %f.\n", + progress, data->action_max); */ if (progress <= data->action_max) gtk_progress_set_percentage (GTK_PROGRESS (data->action_progress), progress/data->action_max); @@ -651,7 +651,7 @@ static int progressLogCB(AB_BANKING *ab, GWEN_TYPE_UINT32 id, /* printf("progressLogCB: Oops, wrong progress id %d -- ignored.\n", id); */ } - printf("progressLogCB: Logging msg: %s\n", text); + /* printf("progressLogCB: Logging msg: %s\n", text); */ GNCInteractor_add_log_text (data, text); g_free(text);