diff options
author | Eike Rathke <erack@redhat.com> | 2021-09-21 19:26:51 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2021-09-21 21:00:45 +0200 |
commit | 508f5b7767210318f1a23efc6db928c87a5eca6f (patch) | |
tree | c793dbeb52d869a9606c198b0a78a0d4429dd961 /include | |
parent | e430d82ec56f34fb5ae45a50eb12cd03c7e40ba3 (diff) |
Add ISO 8601 date+time with milliseconds format
NF_DATETIME_ISO_YYYYMMDDTHHMMSS000
YYYY-MM-DD"T"HH:MM:SS,000
using either ',' or '.' separator,
'.' if Time100SecSep is '.'
',' else
A prerequisite for tdf#88359 to not lose data when importing such,
especially without "Detect special numbers" on.
Change-Id: I02ab682636e6ddbcc4537183a3625ea61662f016
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122400
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/zforlist.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx index a9b9fa37748a..59b748e4381e 100644 --- a/include/svl/zforlist.hxx +++ b/include/svl/zforlist.hxx @@ -247,11 +247,12 @@ enum NfIndexTableOffset NF_DATETIME_ISO_YYYYMMDD_HHMMSS, // 1997-10-08 01:23:45 ISO (with blank instead of T) NF_DATETIME_ISO_YYYYMMDDTHHMMSS, // 1997-10-08T01:23:45 ISO + NF_DATETIME_ISO_YYYYMMDDTHHMMSS000, // 1997-10-08T01:23:45,678 ISO with milliseconds // XXX When adding values here, follow the comment above about // svx/source/items/numfmtsh.cxx - NF_INDEX_TABLE_ENTRIES // == 60, reserved to not be used in i18npool locale data. + NF_INDEX_TABLE_ENTRIES // == 61, reserved to not be used in i18npool locale data. // XXX Adding values above may increment the reserved area that can't be // used by i18npool's locale data FormatCode definitions, see the |