summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorLior Kaplan <kaplanlior@gmail.com>2011-12-01 23:41:42 +0200
committerLior Kaplan <kaplanlior@gmail.com>2011-12-01 23:41:42 +0200
commite10fc18fb2c74ac3e432ffaa2b1c125110fe2eeb (patch)
tree89eeb4275f134a589f5a6fe9be392a40fd86d4ee /vcl
parentfdo#41474: remove setCharAt and charAt from O[U]StringBuffer (diff)
downloadcore-e10fc18fb2c74ac3e432ffaa2b1c125110fe2eeb.tar.gz
core-e10fc18fb2c74ac3e432ffaa2b1c125110fe2eeb.zip
typo fix: explicitely -> explicitly
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/gdimtf.cxx4
-rw-r--r--vcl/source/gdi/outdev2.cxx2
-rw-r--r--vcl/source/gdi/outdev6.cxx2
-rw-r--r--vcl/source/gdi/regband.cxx2
4 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index bd6abfba465d..c90624172627 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -428,7 +428,7 @@ void GDIMetaFile::Play( OutputDevice* pOut, size_t nPos )
// #i23407# Set backwards-compatible text language and layout mode
// This is necessary, since old metafiles don't even know of these
- // recent add-ons. Newer metafiles must of course explicitely set
+ // recent add-ons. Newer metafiles must of course explicitly set
// those states.
pOut->Push( PUSH_TEXTLAYOUTMODE|PUSH_TEXTLANGUAGE );
pOut->SetLayoutMode( 0 );
@@ -678,7 +678,7 @@ void GDIMetaFile::Play( OutputDevice* pOut, const Point& rPos,
// #i23407# Set backwards-compatible text language and layout mode
// This is necessary, since old metafiles don't even know of these
- // recent add-ons. Newer metafiles must of course explicitely set
+ // recent add-ons. Newer metafiles must of course explicitly set
// those states.
pOut->SetLayoutMode( 0 );
pOut->SetDigitLanguage( 0 );
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx
index ec845535d26a..d40536786576 100644
--- a/vcl/source/gdi/outdev2.cxx
+++ b/vcl/source/gdi/outdev2.cxx
@@ -2063,7 +2063,7 @@ void OutputDevice::ImplDrawAlpha( const Bitmap& rBmp, const AlphaMask& rAlpha,
}
// #110958# Disable alpha VDev, we're doing the necessary
- // stuff explicitely furher below
+ // stuff explicitly furher below
if( mpAlphaVDev )
mpAlphaVDev = NULL;
diff --git a/vcl/source/gdi/outdev6.cxx b/vcl/source/gdi/outdev6.cxx
index 82c423d553b4..8800fd40ae2e 100644
--- a/vcl/source/gdi/outdev6.cxx
+++ b/vcl/source/gdi/outdev6.cxx
@@ -327,7 +327,7 @@ void OutputDevice::DrawTransparent( const PolyPolygon& rPolyPoly,
VirtualDevice* pOldAlphaVDev = mpAlphaVDev;
// #110958# Disable alpha VDev, we perform the necessary
- // operation explicitely further below.
+ // operation explicitly further below.
if( mpAlphaVDev )
mpAlphaVDev = NULL;
diff --git a/vcl/source/gdi/regband.cxx b/vcl/source/gdi/regband.cxx
index 887855c0f114..4734d8314849 100644
--- a/vcl/source/gdi/regband.cxx
+++ b/vcl/source/gdi/regband.cxx
@@ -600,7 +600,7 @@ void ImplRegionBand::XOr( long nXLeft, long nXRight )
// #i46602# Reworked rectangle Xor
//
// In general, we can distinguish 11 cases of intersection
- // (details below). The old implementation explicitely handled 7
+ // (details below). The old implementation explicitly handled 7
// cases (numbered in the order of appearance, use CVS to get your
// hands on the old version), therefore, I've sticked to that
// order, and added four more cases. The code below references