summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-07 15:44:39 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-08-07 18:08:29 +0200
commit87f242e036082c1b659536dec2bf779d88910249 (patch)
tree3df8d39b1d86c95c9150bbab8d165f52968ccdea /ucbhelper
parent85e94e11bc24c7bf6f4221f488f7529dcb8d8b00 (diff)
remove empty ascii boxes and stuff III
Change-Id: I8b54e8518c219a7edd7e29173a1099611a7e0dbb
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/client/interceptedinteraction.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/ucbhelper/source/client/interceptedinteraction.cxx b/ucbhelper/source/client/interceptedinteraction.cxx
index 6a8d60294bbb..661869c1b163 100644
--- a/ucbhelper/source/client/interceptedinteraction.cxx
+++ b/ucbhelper/source/client/interceptedinteraction.cxx
@@ -32,32 +32,20 @@ namespace css = ::com::sun::star;
//_______________________________________________
// definitions
-/*-----------------------------------------------
- 17.03.2004 11:00
------------------------------------------------*/
InterceptedInteraction::InterceptedInteraction()
{
}
-/*-----------------------------------------------
- 17.03.2004 14:55
------------------------------------------------*/
void InterceptedInteraction::setInterceptedHandler(const css::uno::Reference< css::task::XInteractionHandler >& xInterceptedHandler)
{
m_xInterceptedHandler = xInterceptedHandler;
}
-/*-----------------------------------------------
- 17.03.2004 14:55
------------------------------------------------*/
void InterceptedInteraction::setInterceptions(const ::std::vector< InterceptedRequest >& lInterceptions)
{
m_lInterceptions = lInterceptions;
}
-/*-----------------------------------------------
- 18.03.2004 10:10
------------------------------------------------*/
InterceptedInteraction::EInterceptionState InterceptedInteraction::intercepted(
const InterceptedRequest&,
const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest >&)
@@ -66,9 +54,6 @@ InterceptedInteraction::EInterceptionState InterceptedInteraction::intercepted(
return E_NOT_INTERCEPTED;
}
-/*-----------------------------------------------
- 18.03.2004 09:46
------------------------------------------------*/
css::uno::Reference< css::task::XInteractionContinuation > InterceptedInteraction::extractContinuation(const css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > >& lContinuations,
const css::uno::Type& aType )
{
@@ -87,18 +72,12 @@ css::uno::Reference< css::task::XInteractionContinuation > InterceptedInteractio
return css::uno::Reference< css::task::XInteractionContinuation >();
}
-/*-----------------------------------------------
- 18.03.2004 10:03
------------------------------------------------*/
void SAL_CALL InterceptedInteraction::handle(const css::uno::Reference< css::task::XInteractionRequest >& xRequest)
throw(css::uno::RuntimeException)
{
impl_handleDefault(xRequest);
}
-/*-----------------------------------------------
- 18.03.2004 10:02
------------------------------------------------*/
void InterceptedInteraction::impl_handleDefault(const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest >& xRequest)
{
EInterceptionState eState = impl_interceptRequest(xRequest);
@@ -128,9 +107,6 @@ void InterceptedInteraction::impl_handleDefault(const ::com::sun::star::uno::Ref
}
}
-/*-----------------------------------------------
- 18.03.2004 09:48
------------------------------------------------*/
InterceptedInteraction::EInterceptionState InterceptedInteraction::impl_interceptRequest(const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest >& xRequest)
{
css::uno::Any aRequest = xRequest->getRequest();