sw/source/filter/basflt/fltini.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 67ef8e99e87b6263334d01f37487d1d385b30b9b Author: Noel Grandin <[email protected]> Date: Wed Jun 21 10:07:06 2017 +0200 fix android build after commit 528632660b72b105345945c13c5b68060d94a91b "convert ErrCode to strong typedef" Change-Id: I31727d89f6450e5d1d0930abf7dba7a32f8b894a diff --git a/sw/source/filter/basflt/fltini.cxx b/sw/source/filter/basflt/fltini.cxx index f112ee9a77cb..3a0cc3648f7f 100644 --- a/sw/source/filter/basflt/fltini.cxx +++ b/sw/source/filter/basflt/fltini.cxx @@ -736,7 +736,7 @@ ErrCode SaveOrDelMSVBAStorage( SfxObjectShell& rDoc, SotStorage& rStor, bool bSa return ErrCode(pFunction( rDoc, rStor, bSaveInto, rStorageName )); return ERRCODE_NONE; #else - return SaveOrDelMSVBAStorage_ww8( rDoc, rStor, bSaveInto, rStorageName ); + return ErrCode(SaveOrDelMSVBAStorage_ww8( rDoc, rStor, bSaveInto, rStorageName )); #endif } @@ -748,7 +748,7 @@ ErrCode GetSaveWarningOfMSVBAStorage( SfxObjectShell &rDocS ) return ErrCode(pFunction( rDocS )); return ERRCODE_NONE; #else - return GetSaveWarningOfMSVBAStorage_ww8( rDocS ); + return ErrCode(GetSaveWarningOfMSVBAStorage_ww8( rDocS )); #endif } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
