diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-29 22:37:17 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-29 22:51:24 +0100 |
commit | f2586285f24977827a1dae06b8b4abd034cb7508 (patch) | |
tree | b02e985a320b48b3f9104af10b34805c3d5238e2 /uui/source | |
parent | 924f093676c0ac44edf80fb8dde456472db164db (diff) |
API CHANGE: remove com.sun.star.ucb.InteractiveCHAOSException
... and com.sun.star.ucb.CHAOSProgressStart.
These are apparently remnants of a predecessor of UCB called CHAOS that
has been removed long ago.
EXISTENCE: published key
"/UCR/com/sun/star/ucb/InteractiveCHAOSException" exists only in
registry 1
EXISTENCE: published key "/UCR/com/sun/star/ucb/CHAOSProgressStart"
exists only in registry 1
Change-Id: I6502874d6026665c0696a4226396714fc44819ee
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 1967c3ab621b..92db8392eb4c 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -43,7 +43,6 @@ #include "com/sun/star/task/XInteractionRequest.hpp" #include "com/sun/star/task/XInteractionRetry.hpp" #include "com/sun/star/ucb/InteractiveAppException.hpp" -#include "com/sun/star/ucb/InteractiveCHAOSException.hpp" #include "com/sun/star/ucb/InteractiveLockingLockedException.hpp" #include "com/sun/star/ucb/InteractiveLockingNotLockedException.hpp" #include "com/sun/star/ucb/InteractiveLockingLockExpiredException.hpp" @@ -600,28 +599,6 @@ UUIInteractionHelper::handleRequest_impl( return true; } - ucb::InteractiveCHAOSException aChaosException; - if (aAnyRequest >>= aChaosException) - { - std::vector< rtl::OUString > aArguments; - sal_Int32 nCount - = std::min< sal_Int32 >(aChaosException.Arguments.getLength(), - 2); - aArguments. - reserve(static_cast< std::vector< rtl::OUString >::size_type >( - nCount)); - for (sal_Int32 i = 0; i < nCount; ++i) - aArguments.push_back(aChaosException.Arguments[i]); - handleErrorHandlerRequest(aChaosException.Classification, - aChaosException.ID, - aArguments, - rRequest->getContinuations(), - bObtainErrorStringOnly, - bHasErrorString, - rErrorString); - return true; - } - ucb::InteractiveWrongMediumException aWrongMediumException; if (aAnyRequest >>= aWrongMediumException) { |