summaryrefslogtreecommitdiff
path: root/uui/source/iahndl.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-24 23:48:45 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-09-10 04:14:47 +0200
commit1f1ec819edc14ad266d49f16116056fd439b7c46 (patch)
tree227fad6022a60d22313a9e8ee1a6a62532ed98a1 /uui/source/iahndl.cxx
parent5958c94274c99058e2596923a83de3ed684e7848 (diff)
remove more warnings about vba export
Change-Id: I8d0e6f69dd4d51d195422e6e934fedc406caec16
Diffstat (limited to 'uui/source/iahndl.cxx')
-rw-r--r--uui/source/iahndl.cxx25
1 files changed, 5 insertions, 20 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 4fa54a787aed..8f58d8520c90 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -743,26 +743,11 @@ UUIInteractionHelper::handleRequest_impl(
task::ErrorCodeRequest aErrorCodeRequest;
if (aAnyRequest >>= aErrorCodeRequest)
{
- // Sucky special handling for xlsx macro filter warning
- if ( (sal_uInt32)ERRCODE_SFX_VBASIC_CANTSAVE_STORAGE == (sal_uInt32)aErrorCodeRequest.ErrCode)
- {
- std::vector< OUString > aArguments;
- handleErrorHandlerRequest( task::InteractionClassification_WARNING,
- ERRCODE_UUI_IO_WARN_CANTSAVE_MACROS,
- aArguments,
- rRequest->getContinuations(),
- bObtainErrorStringOnly,
- bHasErrorString,
- rErrorString);
- }
- else
- {
- handleGenericErrorRequest( aErrorCodeRequest.ErrCode,
- rRequest->getContinuations(),
- bObtainErrorStringOnly,
- bHasErrorString,
- rErrorString);
- }
+ handleGenericErrorRequest( aErrorCodeRequest.ErrCode,
+ rRequest->getContinuations(),
+ bObtainErrorStringOnly,
+ bHasErrorString,
+ rErrorString);
return true;
}