summaryrefslogtreecommitdiff
path: root/include/vcl/pdfwriter.hxx
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-05-18 10:47:12 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2022-05-18 17:37:41 +0200
commit4bd95a0d5c962cc0bb8e90c32300c69ae8e92c1d (patch)
treed655e1fe86fbba62cec014b64d1a93c89865889d /include/vcl/pdfwriter.hxx
parent037cae112958be3894e734d308f5f4b468a2d710 (diff)
tdf#105972: pdf form: export time fields as time type
using AFTime_FormatEx which allows to set a custom format Change-Id: I2d30d9d8340782ed9ad53eb43e1f65728f926b23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134510 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'include/vcl/pdfwriter.hxx')
-rw-r--r--include/vcl/pdfwriter.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx
index 3717a40d8372..a375cc80e2c2 100644
--- a/include/vcl/pdfwriter.hxx
+++ b/include/vcl/pdfwriter.hxx
@@ -195,7 +195,7 @@ public:
enum FormatType
{
- Text, Number
+ Text, Number, Time
};
enum ErrorCode
@@ -388,6 +388,7 @@ public:
OUString CurrencySymbol;
sal_Int32 DecimalAccuracy;
bool PrependCurrencySymbol;
+ OUString TimeFormat;
EditWidget()
: AnyWidget( vcl::PDFWriter::Edit ),