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:
Christian Stimming 2003-03-23 12:07:04 +00:00
parent d0f88705c3
commit 02687747de
2 changed files with 19 additions and 0 deletions

View File

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

View File

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