diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-30 12:21:39 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-30 10:34:17 +0000 |
commit | f45ac62a20b80033a7f5ccdef4a6c116b6fece24 (patch) | |
tree | 960048ceaaa7a874d88a804b2dbec76ae26c910e /slideshow | |
parent | e90848edfd8cb146ab4e11eb2e62c93ed344d62f (diff) |
Fix typos
Change-Id: I89ff6d31662824d83961d6457b82db8d8031168c
Reviewed-on: https://gerrit.libreoffice.org/18977
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/effectrewinder.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/engine/slideshowimpl.cxx | 4 | ||||
-rw-r--r-- | slideshow/source/inc/eventmultiplexer.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/inc/shape.hxx | 2 | ||||
-rw-r--r-- | slideshow/source/inc/usereventqueue.hxx | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/slideshow/source/engine/effectrewinder.hxx b/slideshow/source/engine/effectrewinder.hxx index 97975d50caed..fff6fabf2096 100644 --- a/slideshow/source/engine/effectrewinder.hxx +++ b/slideshow/source/engine/effectrewinder.hxx @@ -78,7 +78,7 @@ public: its internals to us. Only one of the two functors is called. @param rpPaintLock This paint lock is released after the whole asynchronous - procoess of rewinding the current effect is completed. It + process of rewinding the current effect is completed. It prevents intermediate repaints that would show partial replay of effects. @param rSlideRewindFunctor diff --git a/slideshow/source/engine/slideshowimpl.cxx b/slideshow/source/engine/slideshowimpl.cxx index db5f13547ae0..3d694c41123f 100644 --- a/slideshow/source/engine/slideshowimpl.cxx +++ b/slideshow/source/engine/slideshowimpl.cxx @@ -475,7 +475,7 @@ private: SlideSharedPtr mpPrefetchSlide; /// slide to be prefetched: best candidate for upcoming slide uno::Reference<drawing::XDrawPage> mxPrefetchSlide; - /// save the XDrawPagesSupplier to retieve polygons + /// save the XDrawPagesSupplier to retrieve polygons uno::Reference<drawing::XDrawPagesSupplier> mxDrawPagesSupplier; /// slide animation to be prefetched: uno::Reference<animations::XAnimationNode> mxPrefetchAnimationNode; @@ -884,7 +884,7 @@ ActivitySharedPtr SlideShowImpl::createSlideTransition( PolygonMap::iterator SlideShowImpl::findPolygons( uno::Reference<drawing::XDrawPage> const& xDrawPage) { - // TODO(P2) : Optimze research in the map. + // TODO(P2): optimize research in the map. PolygonMap::iterator aEnd = maPolygons.end(); for( auto aIter = maPolygons.begin(); aIter != aEnd; diff --git a/slideshow/source/inc/eventmultiplexer.hxx b/slideshow/source/inc/eventmultiplexer.hxx index cd70cd9c1a3c..6262bc7734f0 100644 --- a/slideshow/source/inc/eventmultiplexer.hxx +++ b/slideshow/source/inc/eventmultiplexer.hxx @@ -718,7 +718,7 @@ public: */ bool notifyCommandStopAudio( const boost::shared_ptr<AnimationNode>& rNode ); - /** Botifies that a hyperlink has been clicked. + /** Notifies that a hyperlink has been clicked. @return true, if this event was processed by anybody. If false is returned, no handler processed diff --git a/slideshow/source/inc/shape.hxx b/slideshow/source/inc/shape.hxx index 4d11ab856369..741e76ab3d7e 100644 --- a/slideshow/source/inc/shape.hxx +++ b/slideshow/source/inc/shape.hxx @@ -211,7 +211,7 @@ namespace slideshow /** Functor struct, for shape ordering This defines a strict weak ordering of shapes, primary - sort key is the shape priority, and secondy sort key + sort key is the shape priority, and secondary sort key the object ptr value. Most typical use is for associative containers holding shapes (and which also have to maintain something like a paint order). diff --git a/slideshow/source/inc/usereventqueue.hxx b/slideshow/source/inc/usereventqueue.hxx index 61dbab91a710..dd7ae4abf82b 100644 --- a/slideshow/source/inc/usereventqueue.hxx +++ b/slideshow/source/inc/usereventqueue.hxx @@ -149,7 +149,7 @@ public: void registerShapeClickEvent( const EventSharedPtr& rEvent, const ShapeSharedPtr& rShape ); - /** Registes an event that is fired when the current effects(s) + /** Registers an event that is fired when the current effects(s) are skipped, .e.g. when the left mouse button is pressed. Then, all registered events are fired and removed from this queue. After firing, a next effect event is issued to this |