mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
2003-03-23 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/hbci-progressmon.c: Add descriptions of new HBCI actions. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8095 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
d0f88705c3
commit
02687747de
@ -1,3 +1,8 @@
|
||||
2003-03-23 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/import-export/hbci/hbci-progressmon.c: Add descriptions of
|
||||
new HBCI actions.
|
||||
|
||||
2003-03-20 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* configure.in: don't add -I$(GNC_INCLUDE_DIR) to the engine
|
||||
|
@ -28,6 +28,7 @@
|
||||
|
||||
#include <openhbci/interactorcb.h>
|
||||
#include <openhbci/progressmonitorcb.h>
|
||||
#include <openhbci.h>
|
||||
#include "dialog-utils.h"
|
||||
#include "druid-utils.h"
|
||||
#include "gnc-ui-util.h"
|
||||
@ -174,6 +175,19 @@ static void jobStarted(JobProgressType type, int actions, void *user_data)
|
||||
case JOB_SEND_KEYS:
|
||||
msg = _("Job: Send Keys");
|
||||
break;
|
||||
#if (OPENHBCI_VERSION_MAJOR>0) || (OPENHBCI_VERSION_MINOR>9) || (OPENHBCI_VERSION_PATCHLEVEL>8)
|
||||
/** Disable keys */
|
||||
case JOB_DISABLE_KEYS:
|
||||
msg = _("Job: Disable Keys");
|
||||
break;
|
||||
/** Change keys */
|
||||
case JOB_CHANGE_KEYS:
|
||||
msg = _("Job: Change Keys");
|
||||
break;
|
||||
#else /* OPENHBCI_VERSION > 0.9.8 */
|
||||
default:
|
||||
msg = _("Unknown");
|
||||
#endif /* OPENHBCI_VERSION > 0.9.8 */
|
||||
}
|
||||
g_assert(msg);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user