summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorSiqi LIU <me@siqi.fr>2013-08-23 19:07:38 +0800
committerSiqi LIU <me@siqi.fr>2013-08-23 19:08:13 +0800
commit1d1626f284790be9bf5dd2c6a7c148f2e05c8957 (patch)
treec7e2a334111d678eb2b96b77992d687daad29591 /slideshow
parentaf2bf3594101b66ecffbc118c0e8d5fb7fa23ba5 (diff)
replace requestImmediateUpdate with normal notifyUpdate
Change-Id: I8f9421cf9c9ec4c5e9e4bb47aff6f18ad3dcafc6
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/pointersymbol.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/slideshow/source/engine/pointersymbol.cxx b/slideshow/source/engine/pointersymbol.cxx
index f825bbc4baf0..0516431312cf 100644
--- a/slideshow/source/engine/pointersymbol.cxx
+++ b/slideshow/source/engine/pointersymbol.cxx
@@ -225,7 +225,8 @@ void PointerSymbol::viewsChanged(const ::com::sun::star::geometry::RealPoint2D p
if( aIter->second ) {
aIter->second->movePixel(
calcSpritePos( aIter->first, pos ));
- mrScreenUpdater.requestImmediateUpdate();
+ mrScreenUpdater.notifyUpdate();
+ mrScreenUpdater.commitUpdates();
}
++aIter;
}