[Libreoffice-commits] core.git: desktop/source

Noel Grandin noel at peralex.com
Thu Mar 19 03:30:50 PDT 2015


 desktop/source/app/dispatchwatcher.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b8d6062a120a70f155e296c72a856cde2c5d142c
Author: Noel Grandin <noel at peralex.com>
Date:   Thu Mar 19 12:29:25 2015 +0200

    fix android build
    
    workaround template issue
    
    Change-Id: Ifeb828685b3f63159249211aa32a90dcba2e5570

diff --git a/desktop/source/app/dispatchwatcher.cxx b/desktop/source/app/dispatchwatcher.cxx
index c61aef3..c243766 100644
--- a/desktop/source/app/dispatchwatcher.cxx
+++ b/desktop/source/app/dispatchwatcher.cxx
@@ -97,7 +97,7 @@ const SfxFilter* impl_lookupExportFilterForUrl( const rtl::OUString& rUrl, const
     sQuery.append(":iflags=");
     sQuery.append(OUString::number(static_cast<sal_Int32>(SfxFilterFlags::EXPORT)));
     sQuery.append(":eflags=");
-    sQuery.append(OUString::number(static_cast<sal_Int32>(SFX_FILTER_NOTINSTALLED)));
+    sQuery.append(OUString::number(static_cast<int>(SFX_FILTER_NOTINSTALLED)));
 
     const Reference< XComponentContext > xContext( comphelper::getProcessComponentContext() );
     const Reference< XContainerQuery > xFilterFactory(


More information about the Libreoffice-commits mailing list