oox/source/drawingml/textfield.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit df9672b1fada6fc847bfa4c8a8f016fb2af6a7b5
Author:     Tamas Bunth <tamas.bu...@collabora.co.uk>
AuthorDate: Fri Oct 25 17:45:01 2019 +0200
Commit:     Tamás Bunth <btom...@gmail.com>
CommitDate: Fri Oct 25 20:22:35 2019 +0200

    tdf#126324 Import custom date as custom XTextField
    
    Change-Id: I89f96490a47210e7daa3b21b2399e0dfe0cf3abf
    Reviewed-on: https://gerrit.libreoffice.org/81513
    Tested-by: Jenkins
    Reviewed-by: Tamás Bunth <btom...@gmail.com>

diff --git a/oox/source/drawingml/textfield.cxx 
b/oox/source/drawingml/textfield.cxx
index 1151f31d1a6d..61b50e8ef549 100644
--- a/oox/source/drawingml/textfield.cxx
+++ b/oox/source/drawingml/textfield.cxx
@@ -67,6 +67,12 @@ void lclCreateTextFields( std::vector< Reference< XTextField 
> > & aFields,
         OString p( s.pData->buffer + 8 );
         try
         {
+            if(p.startsWith("'"))
+            {
+                xIface = xFactory->createInstance( 
"com.sun.star.text.TextField.Custom" );
+                aFields.emplace_back( xIface, UNO_QUERY );
+                return;
+            }
             bool bIsDate = true;
             int idx = p.toInt32();
             sal_uInt16 nNumFmt;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to