[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.3' - filter/source
Andras Timar
andras.timar at collabora.com
Mon Mar 16 12:55:15 PDT 2015
filter/source/pdf/impdialog.cxx | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit 155a762970b9f11a21be95b0c9dd2df76bad0ee0
Author: Andras Timar <andras.timar at collabora.com>
Date: Mon Mar 16 20:54:44 2015 +0100
disable PDF timestamping UI on Windows
Change-Id: Ied4520670478d04fce3620c4f3375b1a435f98af
diff --git a/filter/source/pdf/impdialog.cxx b/filter/source/pdf/impdialog.cxx
index ccec924..3de8690 100644
--- a/filter/source/pdf/impdialog.cxx
+++ b/filter/source/pdf/impdialog.cxx
@@ -1548,6 +1548,12 @@ ImpPDFTabSigningPage::ImpPDFTabSigningPage(Window* pParent, const SfxItemSet& rC
mpPbSignCertSelect->SetClickHdl( LINK( this, ImpPDFTabSigningPage, ClickmaPbSignCertSelect ) );
mpPbSignCertClear->SetClickHdl( LINK( this, ImpPDFTabSigningPage, ClickmaPbSignCertClear ) );
mpLBSignTSA->SetSelectHdl( LINK( this, ImpPDFTabSigningPage, SelectLBSignTSA ) );
+
+//FIXME: timestamping does not work on Windows (LOfC 4.3)
+#ifdef WNT
+ get<VclContainer>("label15")->Hide();
+ mpLBSignTSA->Hide();
+#endif
}
More information about the Libreoffice-commits
mailing list