summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--slideshow/opengl/vortexVertexShader.glsl2
-rw-r--r--slideshow/source/engine/OGLTrans/generic/OGLTrans_Operation.hxx2
-rw-r--r--slideshow/source/engine/animationnodes/basenode.cxx2
-rw-r--r--slideshow/source/engine/shapes/drawinglayeranimation.cxx2
-rw-r--r--slideshow/source/engine/slide/userpaintoverlay.cxx2
-rw-r--r--slideshow/source/engine/slideshowimpl.cxx2
-rw-r--r--slideshow/source/engine/tools.cxx2
-rw-r--r--slideshow/source/engine/transitions/clippingfunctor.cxx2
-rw-r--r--slideshow/source/engine/transitions/clippingfunctor.hxx2
-rw-r--r--slideshow/source/inc/enumanimation.hxx2
-rw-r--r--slideshow/source/inc/eventqueue.hxx2
-rw-r--r--slideshow/source/inc/slideshowcontext.hxx2
12 files changed, 12 insertions, 12 deletions
diff --git a/slideshow/opengl/vortexVertexShader.glsl b/slideshow/opengl/vortexVertexShader.glsl
index e01b3316e598..33fdc9374e1b 100644
--- a/slideshow/opengl/vortexVertexShader.glsl
+++ b/slideshow/opengl/vortexVertexShader.glsl
@@ -113,7 +113,7 @@ void main( void )
vec4 v = vec4(a_position, 1.0);
vec4 normal = vec4(a_normal, 1.0);
- // Each tile moves during only half of the transition. The letmost
+ // Each tile moves during only half of the transition. The leftmost
// tiles start moving at the start and arrive at their end
// position around time=0.5, when the tiles there (the rightmost
// ones) start moving. (The exact time each tile is moving is
diff --git a/slideshow/source/engine/OGLTrans/generic/OGLTrans_Operation.hxx b/slideshow/source/engine/OGLTrans/generic/OGLTrans_Operation.hxx
index df058c24626c..ad03f236e621 100644
--- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_Operation.hxx
+++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_Operation.hxx
@@ -43,7 +43,7 @@ public:
virtual ~Operation(){}
protected:
- /** Should this operation be interpolated . If TRUE, the transform will smoothly move from making no difference from t = 0.0 to mnT0 to being completely transformed from t = mnT1 to 1. If FALSE, the transform will be inneffectual from t = 0 to mnT0, and completely transformed from t = mnT0 to 1.
+ /** Should this operation be interpolated . If TRUE, the transform will smoothly move from making no difference from t = 0.0 to mnT0 to being completely transformed from t = mnT1 to 1. If FALSE, the transform will be ineffectual from t = 0 to mnT0, and completely transformed from t = mnT0 to 1.
*/
bool mbInterpolate;
diff --git a/slideshow/source/engine/animationnodes/basenode.cxx b/slideshow/source/engine/animationnodes/basenode.cxx
index 5e0b3fb868a0..b2e66b0ae6f1 100644
--- a/slideshow/source/engine/animationnodes/basenode.cxx
+++ b/slideshow/source/engine/animationnodes/basenode.cxx
@@ -538,7 +538,7 @@ void BaseNode::scheduleDeactivationEvent( EventSharedPtr const& pEvent )
// xxx todo:
// think about set node, anim base node!
- // if anim base node has no activity, this is called to schedule deactivatiion,
+ // if anim base node has no activity, this is called to schedule deactivation,
// but what if it does not schedule anything?
// TODO(F2): Handle end time attribute, too
diff --git a/slideshow/source/engine/shapes/drawinglayeranimation.cxx b/slideshow/source/engine/shapes/drawinglayeranimation.cxx
index 5804f7e03c87..5a2a7f1cb0c4 100644
--- a/slideshow/source/engine/shapes/drawinglayeranimation.cxx
+++ b/slideshow/source/engine/shapes/drawinglayeranimation.cxx
@@ -221,7 +221,7 @@ private:
// Flag decides if TextScroll alternates. Default is sal_False.
bool mbAlternate;
- // Flag to remember if this is a simple scrollin text
+ // Flag to remember if this is a simple scrolling text
bool mbScrollIn;
// start time for this animation
diff --git a/slideshow/source/engine/slide/userpaintoverlay.cxx b/slideshow/source/engine/slide/userpaintoverlay.cxx
index cd7437be1daf..1e3aab9443ea 100644
--- a/slideshow/source/engine/slide/userpaintoverlay.cxx
+++ b/slideshow/source/engine/slide/userpaintoverlay.cxx
@@ -169,7 +169,7 @@ namespace slideshow
// therefore destroy all the polygons stored
if(mbIsEraseAllModeActivated)
{
- // The Erase Mode should be desactivated
+ // The Erase Mode should be deactivated
mbIsEraseModeActivated = false;
repaintWithoutPolygons();
maPolygons.clear();
diff --git a/slideshow/source/engine/slideshowimpl.cxx b/slideshow/source/engine/slideshowimpl.cxx
index e837fd17f36d..008f5faacbd6 100644
--- a/slideshow/source/engine/slideshowimpl.cxx
+++ b/slideshow/source/engine/slideshowimpl.cxx
@@ -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( PolygonMap::iterator aIter = maPolygons.begin();
aIter != aEnd;
diff --git a/slideshow/source/engine/tools.cxx b/slideshow/source/engine/tools.cxx
index a34f14421880..64d52465d2d7 100644
--- a/slideshow/source/engine/tools.cxx
+++ b/slideshow/source/engine/tools.cxx
@@ -539,7 +539,7 @@ namespace slideshow
}
// return identity transform for un-attributed
- // shapes. This renders the sprite as-is, in it's
+ // shapes. This renders the sprite as-is, in its
// document-supplied size.
return aTransform;
}
diff --git a/slideshow/source/engine/transitions/clippingfunctor.cxx b/slideshow/source/engine/transitions/clippingfunctor.cxx
index 32def8667a52..c2e8fac9f135 100644
--- a/slideshow/source/engine/transitions/clippingfunctor.cxx
+++ b/slideshow/source/engine/transitions/clippingfunctor.cxx
@@ -64,7 +64,7 @@ namespace slideshow
// perform general transformations _before_ the reverse
// mode changes. This allows the Transition table to be
- // filled more constitently (otherwise, when e.g. rotating
+ // filled more consistently (otherwise, when e.g. rotating
// a clip 90 degrees, the REVERSEMETHOD_FLIP_X becomes
// REVERSEMETHOD_FLIP_Y instead)
if (rTransitionInfo.mnRotationAngle != 0.0 ||
diff --git a/slideshow/source/engine/transitions/clippingfunctor.hxx b/slideshow/source/engine/transitions/clippingfunctor.hxx
index 954b7995fae3..dfe0a94987ba 100644
--- a/slideshow/source/engine/transitions/clippingfunctor.hxx
+++ b/slideshow/source/engine/transitions/clippingfunctor.hxx
@@ -41,7 +41,7 @@ namespace slideshow
The ParametricPolyPolygon can be obtained from the
ParametricPolyPolygonFactory, see there.
- The TransitionInfo further parameterizes the polygon
+ The TransitionInfo further parametrizes the polygon
generated by the ParametricPolyPolygon, with common
modifications such as rotation, flipping, or change of
direction. This allows the ParametricPolyPolygonFactory to
diff --git a/slideshow/source/inc/enumanimation.hxx b/slideshow/source/inc/enumanimation.hxx
index 4737acdc5a67..e6490570462d 100644
--- a/slideshow/source/inc/enumanimation.hxx
+++ b/slideshow/source/inc/enumanimation.hxx
@@ -33,7 +33,7 @@ namespace slideshow
This interface is a specialization of the Animation
interface, and is used to animate attributes representable
- by a set of constant values, such as UNO constantsm, or enums.
+ by a set of constant values, such as UNO constants, or enums.
*/
class EnumAnimation : public Animation
{
diff --git a/slideshow/source/inc/eventqueue.hxx b/slideshow/source/inc/eventqueue.hxx
index d3f5bebc4201..c67e5d70d958 100644
--- a/slideshow/source/inc/eventqueue.hxx
+++ b/slideshow/source/inc/eventqueue.hxx
@@ -62,7 +62,7 @@ namespace slideshow
bool addEventForNextRound( const EventSharedPtr& event );
/** Another way to control the order of asynchronous event
- exeqution. Use this method to schedule events that are to
+ execution. Use this method to schedule events that are to
be executed after all regular events that have no delay,
even when they schedule new regular events without delay.
*/
diff --git a/slideshow/source/inc/slideshowcontext.hxx b/slideshow/source/inc/slideshowcontext.hxx
index 19b0739afdf2..3f414aa8ab4d 100644
--- a/slideshow/source/inc/slideshowcontext.hxx
+++ b/slideshow/source/inc/slideshowcontext.hxx
@@ -46,7 +46,7 @@ namespace slideshow
/** Common arguments for slideshow objects.
This struct combines a number of object references
- ubiquituously needed throughout the slideshow.
+ ubiquitously needed throughout the slideshow.
*/
struct SlideShowContext
{