Configurable time format.

This commit is contained in:
Felicity Tarnell 2014-03-08 13:49:19 +00:00
parent 2af789884e
commit 0479ee0f89
7 changed files with 63 additions and 29 deletions

2
tts.c
View file

@ -92,6 +92,7 @@ int mark_advance = 1;
int bill_advance = 0;
int bill_increment = 0;
wchar_t *auto_nonbillable;
int time_format;
variable_t variables[] = {
{ L"delete_advance", VTYPE_BOOL, &delete_advance },
@ -100,6 +101,7 @@ variable_t variables[] = {
{ L"show_billable", VTYPE_BOOL, &show_billable },
{ L"auto_non_billable", VTYPE_STRING, &auto_nonbillable },
{ L"bill_increment", VTYPE_INT, &bill_increment },
{ L"time_format", VTYPE_INT, &time_format },
{ }
};