xmlscript/source/xmldlg_imexp/xmldlg_export.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit efc91dd551e617f4a24b52a0284bdca850f4d61b
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Thu Aug 10 11:25:14 2017 +0200

    tdf#109177: Fix expected type of Orientation attr
    
    Regression introduced with 7e781aa15ab8c6bb727ccf290db7768bc9ba6245 "Clean 
up
    uses of Any::getValue() in xmlscript"
    
    Change-Id: I66df1c5aacab1d697438c57418c9100f9dba627a
    (cherry picked from commit 1fc6b2f745300eae03373a1beb5d5ff79cf7de10)
    Reviewed-on: https://gerrit.libreoffice.org/40955
    Reviewed-by: Michael Stahl <mst...@redhat.com>
    Tested-by: Jenkins <c...@libreoffice.org>

diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
index 5a5afd351b71..6238f6945e76 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
@@ -860,7 +860,7 @@ void ElementDescriptor::readOrientationAttr( OUString const 
& rPropName, OUStrin
     if (beans::PropertyState_DEFAULT_VALUE != _xPropState->getPropertyState( 
rPropName ))
     {
         Any a( _xProps->getPropertyValue( rPropName ) );
-        if (auto n = o3tl::tryAccess<sal_Int16>(a))
+        if (auto n = o3tl::tryAccess<sal_Int32>(a))
         {
             switch (*n)
             {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to