diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-29 14:48:49 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-29 14:50:46 +0100 |
commit | 64ef3208df5115f0574f9d729c51f1cdb2fb05ed (patch) | |
tree | 6b4640809ae8f8e75a93ad51cd56955801a8bf56 /uui/source | |
parent | 214465477d80443b58d41124340702424532173b (diff) |
uui: oops, overlooked css.sync2 using code in uui
Change-Id: I42a0a94eddb58ec13d019d29fe8b88ae63d3c138
Diffstat (limited to 'uui/source')
-rw-r--r-- | uui/source/iahndl.cxx | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index 3c24531e1dac..1967c3ab621b 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -31,7 +31,6 @@ #include "com/sun/star/lang/XInitialization.hpp" #include "com/sun/star/lang/XMultiServiceFactory.hpp" #include "com/sun/star/script/ModuleSizeExceededRequest.hpp" -#include "com/sun/star/sync2/BadPartnershipException.hpp" #include "com/sun/star/task/ErrorCodeIOException.hpp" #include "com/sun/star/task/ErrorCodeRequest.hpp" #include "com/sun/star/task/FutureDocumentVersionProductUpdateRequest.hpp" @@ -675,28 +674,6 @@ UUIInteractionHelper::handleRequest_impl( return true; } - sync2::BadPartnershipException aBadPartnershipException; - if (aAnyRequest >>= aBadPartnershipException) - { - ErrCode nErrorCode; - std::vector< rtl::OUString > aArguments; - if (aBadPartnershipException.Partnership.getLength() == 0) - nErrorCode = ERRCODE_UUI_BADPARTNERSHIP; - else - { - nErrorCode = ERRCODE_UUI_BADPARTNERSHIP_NAME; - aArguments.push_back(aBadPartnershipException.Partnership); - } - handleErrorHandlerRequest(task::InteractionClassification_ERROR, - nErrorCode, - aArguments, - rRequest->getContinuations(), - bObtainErrorStringOnly, - bHasErrorString, - rErrorString); - return true; - } - configuration::backend::MergeRecoveryRequest aMergeRecoveryRequest; if (aAnyRequest >>= aMergeRecoveryRequest) { |