summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-21 10:07:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-21 10:07:06 +0200
commit67ef8e99e87b6263334d01f37487d1d385b30b9b (patch)
tree496129c3e7a957acc4bf6ba8e16831ed64ed00dd /sw
parent0f4038abcd3d5f93847f7f27ffbb990f6a19c4ba (diff)
fix android build
after commit 528632660b72b105345945c13c5b68060d94a91b "convert ErrCode to strong typedef" Change-Id: I31727d89f6450e5d1d0930abf7dba7a32f8b894a
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/basflt/fltini.cxx4
1 files changed, 2 insertions, 2 deletions
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
}