summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-07-07 14:30:31 +0300
committerTor Lillqvist <tml@collabora.com>2015-07-07 14:30:31 +0300
commit33de79f434bdeab591dd8146cad12657d2e8ad34 (patch)
treed1e69a2d183992f2025cc2ec4f8cf6174bb96edb
parenta82633760496aba3dbc8fb20ff02684109c9c1a3 (diff)
Fix some misspellings
Change-Id: Iff2303650e1dcfc56064907a28df1c4c452eac56
-rw-r--r--basegfx/source/polygon/b3dpolygontools.cxx2
-rw-r--r--basegfx/source/polygon/b3dpolypolygontools.cxx2
-rw-r--r--drawinglayer/source/primitive2d/patternfillprimitive2d.cxx2
-rw-r--r--drawinglayer/source/primitive2d/sceneprimitive2d.cxx2
-rw-r--r--include/drawinglayer/primitive2d/svggradientprimitive2d.hxx8
-rw-r--r--include/vcl/bitmapex.hxx2
-rw-r--r--sd/source/ui/accessibility/AccessibleViewForwarder.cxx4
-rw-r--r--sd/source/ui/slidesorter/view/SlsLayouter.cxx2
-rw-r--r--svx/source/engine3d/e3dsceneupdater.cxx2
-rw-r--r--svx/source/engine3d/obj3d.cxx2
-rw-r--r--vcl/source/outdev/outdev.cxx2
-rw-r--r--vcl/source/window/floatwin.cxx4
12 files changed, 17 insertions, 17 deletions
diff --git a/basegfx/source/polygon/b3dpolygontools.cxx b/basegfx/source/polygon/b3dpolygontools.cxx
index 62904d6b4c1d..4883a3a3d679 100644
--- a/basegfx/source/polygon/b3dpolygontools.cxx
+++ b/basegfx/source/polygon/b3dpolygontools.cxx
@@ -401,7 +401,7 @@ namespace basegfx
{
double fX(fOne - ((atan2(aVector.getZ(), aVector.getX()) + F_PI) / F_2PI));
- // correct cartesinan point coordiante dependent from center value
+ // correct cartesian point coordinate dependent from center value
if(fX > fXCenter + 0.5)
{
fX -= fOne;
diff --git a/basegfx/source/polygon/b3dpolypolygontools.cxx b/basegfx/source/polygon/b3dpolypolygontools.cxx
index 0f74f6e58829..53498fe720b8 100644
--- a/basegfx/source/polygon/b3dpolypolygontools.cxx
+++ b/basegfx/source/polygon/b3dpolypolygontools.cxx
@@ -221,7 +221,7 @@ namespace basegfx
return aRetval;
}
- // helper for getting the 3D Point from given cartesian coordiantes. fHor is defined from
+ // helper for getting the 3D Point from given cartesian coordinates. fHor is defined from
// [F_PI2 .. -F_PI2], fVer from [0.0 .. F_2PI]
inline B3DPoint getPointFromCartesian(double fHor, double fVer)
{
diff --git a/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx b/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
index 2e4357e76c4e..19140d977308 100644
--- a/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
@@ -80,7 +80,7 @@ namespace drawinglayer
aContent);
}
- // transform result which is in unit coordinates to mask's object coordiantes
+ // transform result which is in unit coordinates to mask's object coordinates
{
const basegfx::B2DHomMatrix aMaskTransform(
basegfx::tools::createScaleTranslateB2DHomMatrix(
diff --git a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
index a424610c5418..f3042c034f85 100644
--- a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
@@ -237,7 +237,7 @@ namespace drawinglayer
// and not yet flipped in Y
basegfx::B3DHomMatrix aExtendedProjection(aViewInformation3D.getProjection());
- // bring to unit coordiantes, flip Y, leave Z unchanged
+ // bring to unit coordinates, flip Y, leave Z unchanged
aExtendedProjection.scale(0.5, -0.5, 1.0);
aExtendedProjection.translate(0.5, 0.5, 0.0);
diff --git a/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx b/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx
index 2bc6e54aab05..be827f4c4843 100644
--- a/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx
@@ -305,14 +305,14 @@ namespace drawinglayer
{
namespace primitive2d
{
- /* basic primitive for a single linear GradientRun in unit coordiantes.
+ /* basic primitive for a single linear GradientRun in unit coordinates.
It's derived from DiscreteMetricDependentPrimitive2D to allow view-dependent
decompositions allowing reduced color steps
**/
class DRAWINGLAYER_DLLPUBLIC SvgLinearAtomPrimitive2D : public DiscreteMetricDependentPrimitive2D
{
private:
- /// the geometric definition in unit coordiantes
+ /// the geometric definition in unit coordinates
basegfx::BColor maColorA;
basegfx::BColor maColorB;
double mfOffsetA;
@@ -351,14 +351,14 @@ namespace drawinglayer
{
namespace primitive2d
{
- /* basic primitive for a single radial GradientRun in unit coordiantes.
+ /* basic primitive for a single radial GradientRun in unit coordinates.
It's derived from DiscreteMetricDependentPrimitive2D to allow view-dependent
decompositions allowing reduced color steps
**/
class DRAWINGLAYER_DLLPUBLIC SvgRadialAtomPrimitive2D : public DiscreteMetricDependentPrimitive2D
{
private:
- /// the geometric definition in unit coordiantes
+ /// the geometric definition in unit coordinates
basegfx::BColor maColorA;
basegfx::BColor maColorB;
double mfScaleA;
diff --git a/include/vcl/bitmapex.hxx b/include/vcl/bitmapex.hxx
index 096e2a050905..3eee859c6e6b 100644
--- a/include/vcl/bitmapex.hxx
+++ b/include/vcl/bitmapex.hxx
@@ -401,7 +401,7 @@ public:
@param rTransformation
The back transformation for each pixel in (0 .. fWidth),(0 .. fHeight) to
- local pixel coordiantes
+ local pixel coordinates
@param bSmooth
Defines if pixel interpolation is to be used to create the result
diff --git a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx
index f110a6b676af..e4b3c46e8951 100644
--- a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx
+++ b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx
@@ -73,8 +73,8 @@ Rectangle AccessibleViewForwarder::GetVisibleArea() const
return aVisibleArea;
}
-/** Tansform the given point into pixel coordiantes. After the pixel
- coordiantes of the window origin are added to make the point coordinates
+/** Tansform the given point into pixel coordinates. After the pixel
+ coordinates of the window origin are added to make the point coordinates
absolute.
*/
Point AccessibleViewForwarder::LogicToPixel (const Point& rPoint) const
diff --git a/sd/source/ui/slidesorter/view/SlsLayouter.cxx b/sd/source/ui/slidesorter/view/SlsLayouter.cxx
index 31867339f804..0f960e2e85c3 100644
--- a/sd/source/ui/slidesorter/view/SlsLayouter.cxx
+++ b/sd/source/ui/slidesorter/view/SlsLayouter.cxx
@@ -134,7 +134,7 @@ public:
The row index of the upper row or the column index of the left
column.
@param nGap
- Width or height of the gap in model coordiantes between the
+ Width or height of the gap in model coordinates between the
page borders.
@return
Returns either the index of the upper row (as given as nRow), the
diff --git a/svx/source/engine3d/e3dsceneupdater.cxx b/svx/source/engine3d/e3dsceneupdater.cxx
index b2bced05f690..b059bf527ae2 100644
--- a/svx/source/engine3d/e3dsceneupdater.cxx
+++ b/svx/source/engine3d/e3dsceneupdater.cxx
@@ -96,7 +96,7 @@ E3DModifySceneSnapRectUpdater::~E3DModifySceneSnapRectUpdater()
aAllContentRange.getMinX(), aAllContentRange.getMinY(),
aAllContentRange.getMaxX(), aAllContentRange.getMaxY());
- // transform to 2D world coordiantes using scene's 2D transformation
+ // transform to 2D world coordinates using scene's 2D transformation
aSnapRange.transform(rVCScene.getObjectTransformation());
// snap to (old) integer
diff --git a/svx/source/engine3d/obj3d.cxx b/svx/source/engine3d/obj3d.cxx
index ef50b3da671f..91d2d3d4f1e7 100644
--- a/svx/source/engine3d/obj3d.cxx
+++ b/svx/source/engine3d/obj3d.cxx
@@ -926,7 +926,7 @@ void E3dCompoundObject::RecalcSnapRect()
aBoundVolume.getMinX(), aBoundVolume.getMinY(),
aBoundVolume.getMaxX(), aBoundVolume.getMaxY());
- // transform to 2D world coordiantes
+ // transform to 2D world coordinates
const sdr::contact::ViewContactOfE3dScene& rVCScene = static_cast< sdr::contact::ViewContactOfE3dScene& >(pRootScene->GetViewContact());
aSnapRange.transform(rVCScene.getObjectTransformation());
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index 0b6d0aa7ec01..daaea0ab87f5 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -757,7 +757,7 @@ bool OutputDevice::ImplIsAntiparallel() const
return bRet;
}
-// note: the coordinates to be remirrored are in frame coordiantes !
+// note: the coordinates to be remirrored are in frame coordinates !
void OutputDevice::ReMirror( Point &rPoint ) const
{
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 78dcefdd3a93..4ae768325380 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -462,7 +462,7 @@ FloatingWindow* FloatingWindow::ImplFloatHitTest( vcl::Window* pReference, const
if( pReference->HasMirroredGraphics() )
{
if(!pReference->IsRTLEnabled() )
- // --- RTL --- re-mirror back to get device coordiantes
+ // --- RTL --- re-mirror back to get device coordinates
pWindowOutDev->ReMirror( aAbsolute );
Rectangle aRect( pReference->ScreenToOutputPixel(aAbsolute), Size(1,1) ) ;
@@ -677,7 +677,7 @@ void FloatingWindow::StartPopupMode( const Rectangle& rRect, FloatWinPopupFlags
if( pReference->HasMirroredGraphics() )
{
if(!pReference->IsRTLEnabled() )
- // --- RTL --- re-mirror back to get device coordiantes
+ // --- RTL --- re-mirror back to get device coordinates
pParentWinOutDev->ReMirror(maFloatRect);
maFloatRect.SetPos(pReference->ScreenToOutputPixel(maFloatRect.TopLeft()));