summaryrefslogtreecommitdiff
path: root/slideshow/source/inc/interruptabledelayevent.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/inc/interruptabledelayevent.hxx')
-rw-r--r--slideshow/source/inc/interruptabledelayevent.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/slideshow/source/inc/interruptabledelayevent.hxx b/slideshow/source/inc/interruptabledelayevent.hxx
index 4319024365f8..baa074ca8625 100644
--- a/slideshow/source/inc/interruptabledelayevent.hxx
+++ b/slideshow/source/inc/interruptabledelayevent.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -45,8 +45,8 @@ namespace slideshow
class DelayFacade : public Event
{
public:
- DelayFacade( const EventSharedPtr& rEvent,
- double nTimeout ) :
+ DelayFacade( const EventSharedPtr& rEvent,
+ double nTimeout ) :
#if OSL_DEBUG_LEVEL > 1
Event(::rtl::OUString::createFromAscii("DelayFacade")),
#endif
@@ -89,8 +89,8 @@ namespace slideshow
}
private:
- EventSharedPtr mpEvent;
- double mnTimeout;
+ EventSharedPtr mpEvent;
+ double mnTimeout;
};
/// Return value for makeInterruptableDelay()
@@ -100,14 +100,14 @@ namespace slideshow
event. When enqueued, this event will fire the
requested action only after the specified timeout.
*/
- EventSharedPtr mpTimeoutEvent;
+ EventSharedPtr mpTimeoutEvent;
/** This member contains a pointer to the interruption
event. When enqueued, this event will fire
immediately, interrupting a potentially waiting
timeout event.
*/
- EventSharedPtr mpImmediateEvent;
+ EventSharedPtr mpImmediateEvent;
};
/** Generate an interruptable delay event.
@@ -134,8 +134,8 @@ namespace slideshow
specified amount of time, and the other fires the given
functor immediately.
*/
- template< typename Functor > InterruptableEventPair makeInterruptableDelay( const Functor& rFunctor,
- double nTimeout )
+ template< typename Functor > InterruptableEventPair makeInterruptableDelay( const Functor& rFunctor,
+ double nTimeout )
{
InterruptableEventPair aRes;