summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/tools/IdleDetection.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:20:00 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:41:09 +0200
commited6b8a100c1aabb342573f252509573bbe124d29 (patch)
tree35874493d9470202b3221aa2a1666b6647494242 /sd/source/ui/tools/IdleDetection.cxx
parentfix build after rebase (diff)
downloadcore-ed6b8a100c1aabb342573f252509573bbe124d29.tar.gz
core-ed6b8a100c1aabb342573f252509573bbe124d29.zip
remove whitespaces
Change-Id: I9daea42a433b5032931a722878874917cf37f4d1
Diffstat (limited to 'sd/source/ui/tools/IdleDetection.cxx')
-rw-r--r--sd/source/ui/tools/IdleDetection.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/sd/source/ui/tools/IdleDetection.cxx b/sd/source/ui/tools/IdleDetection.cxx
index 5fce6fe9d9a2..e7bafc546bc3 100644
--- a/sd/source/ui/tools/IdleDetection.cxx
+++ b/sd/source/ui/tools/IdleDetection.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "tools/IdleDetection.hxx"
#include "ViewShell.hxx"
@@ -34,7 +33,6 @@ using namespace ::com::sun::star;
namespace sd { namespace tools {
-
sal_Int32 IdleDetection::GetIdleState (const ::Window* pWindow)
{
sal_Int32 nResult (CheckInputPending() | CheckSlideShowRunning());
@@ -43,9 +41,6 @@ sal_Int32 IdleDetection::GetIdleState (const ::Window* pWindow)
return nResult;
}
-
-
-
sal_Int32 IdleDetection::CheckInputPending (void)
{
if (Application::AnyInput(VCL_INPUT_MOUSE | VCL_INPUT_KEYBOARD | VCL_INPUT_PAINT))
@@ -54,9 +49,6 @@ sal_Int32 IdleDetection::CheckInputPending (void)
return IDET_IDLE;
}
-
-
-
sal_Int32 IdleDetection::CheckSlideShowRunning (void)
{
sal_Int32 eResult (IDET_IDLE);
@@ -101,9 +93,6 @@ sal_Int32 IdleDetection::CheckSlideShowRunning (void)
return eResult;
}
-
-
-
sal_Int32 IdleDetection::CheckWindowPainting (const ::Window& rWindow)
{
if (rWindow.IsInPaint())