summaryrefslogtreecommitdiff
path: root/drawinglayer/source
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source')
-rw-r--r--drawinglayer/source/primitive2d/metafileprimitive2d.cxx2
-rw-r--r--drawinglayer/source/processor2d/contourextractor2d.cxx6
-rw-r--r--drawinglayer/source/processor2d/hittestprocessor2d.cxx6
-rw-r--r--drawinglayer/source/processor2d/linegeometryextractor2d.cxx2
-rw-r--r--drawinglayer/source/processor2d/textaspolygonextractor2d.cxx2
-rw-r--r--drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx2
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx4
7 files changed, 12 insertions, 12 deletions
diff --git a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
index 8a19cbedea64..836d72e95478 100644
--- a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
@@ -961,7 +961,7 @@ namespace
// This ClipPolyPolygon is identical to the current one, so there is no need to
// create a MaskPrimitive2D containing the up-to-now created primitives, but
// this was done before. While this does not lead to wrong primitive
- // representations of the metafile data, it creates unneccesarily expensive
+ // representations of the metafile data, it creates unnecessarily expensive
// representations. Just detecting when no really 'new' ClipPolyPolygon gets set
// solves the problem.
diff --git a/drawinglayer/source/processor2d/contourextractor2d.cxx b/drawinglayer/source/processor2d/contourextractor2d.cxx
index 249c2915d82f..62896bb13331 100644
--- a/drawinglayer/source/processor2d/contourextractor2d.cxx
+++ b/drawinglayer/source/processor2d/contourextractor2d.cxx
@@ -137,7 +137,7 @@ namespace drawinglayer
getViewInformation2D().getExtendedInformationSequence());
updateViewInformation(aViewInformation2D);
- // proccess content
+ // process content
process(rTransformCandidate.getChildren());
// restore transformations
@@ -152,13 +152,13 @@ namespace drawinglayer
const primitive2d::Primitive2DSequence xExtracted2DSceneGeometry(rScenePrimitive2DCandidate.getGeometry2D());
const primitive2d::Primitive2DSequence xExtracted2DSceneShadow(rScenePrimitive2DCandidate.getShadow2D(getViewInformation2D()));
- // proccess content
+ // process content
if(xExtracted2DSceneGeometry.hasElements())
{
process(xExtracted2DSceneGeometry);
}
- // proccess content
+ // process content
if(xExtracted2DSceneShadow.hasElements())
{
process(xExtracted2DSceneShadow);
diff --git a/drawinglayer/source/processor2d/hittestprocessor2d.cxx b/drawinglayer/source/processor2d/hittestprocessor2d.cxx
index 7e412e006fe2..3c0fe379c1e7 100644
--- a/drawinglayer/source/processor2d/hittestprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/hittestprocessor2d.cxx
@@ -221,7 +221,7 @@ namespace drawinglayer
//
// if(xExtracted2DSceneShadow.hasElements())
// {
- // // proccess extracted 2D content
+ // // process extracted 2D content
// process(xExtracted2DSceneShadow);
// }
// }
@@ -246,7 +246,7 @@ namespace drawinglayer
//
// if(xExtracted2DSceneGeometry.hasElements() || xExtracted2DSceneShadow.hasElements())
// {
- // // proccess extracted 2D content
+ // // process extracted 2D content
// process(xExtracted2DSceneGeometry);
// process(xExtracted2DSceneShadow);
// }
@@ -289,7 +289,7 @@ namespace drawinglayer
getViewInformation2D().getExtendedInformationSequence());
updateViewInformation(aViewInformation2D);
- // proccess child content recursively
+ // process child content recursively
process(rTransformCandidate.getChildren());
// restore transformations
diff --git a/drawinglayer/source/processor2d/linegeometryextractor2d.cxx b/drawinglayer/source/processor2d/linegeometryextractor2d.cxx
index 7ef3a0473f21..baa987ddb69c 100644
--- a/drawinglayer/source/processor2d/linegeometryextractor2d.cxx
+++ b/drawinglayer/source/processor2d/linegeometryextractor2d.cxx
@@ -99,7 +99,7 @@ namespace drawinglayer
getViewInformation2D().getExtendedInformationSequence());
updateViewInformation(aViewInformation2D);
- // proccess content
+ // process content
process(rTransformCandidate.getChildren());
// restore transformations
diff --git a/drawinglayer/source/processor2d/textaspolygonextractor2d.cxx b/drawinglayer/source/processor2d/textaspolygonextractor2d.cxx
index a698902cbf16..1805d23a05c0 100644
--- a/drawinglayer/source/processor2d/textaspolygonextractor2d.cxx
+++ b/drawinglayer/source/processor2d/textaspolygonextractor2d.cxx
@@ -188,7 +188,7 @@ namespace drawinglayer
getViewInformation2D().getExtendedInformationSequence());
updateViewInformation(aViewInformation2D);
- // proccess content
+ // process content
process(rTransformCandidate.getChildren());
// restore transformations
diff --git a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
index 1230ce5cd5c4..4ea56e581c59 100644
--- a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
@@ -2126,7 +2126,7 @@ namespace drawinglayer
mpPDFExtOutDevData->BeginStructureElement(rTagElement);
}
- // proccess children normally
+ // process children normally
process(rStructureTagCandidate.getChildren());
if(mpPDFExtOutDevData && bTagUsed)
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index d23e5b5a908a..7c538ed67bb2 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -1024,7 +1024,7 @@ namespace drawinglayer
getViewInformation2D().getExtendedInformationSequence());
updateViewInformation(aViewInformation2D);
- // proccess content
+ // process content
process(rTransformCandidate.getChildren());
// restore transformations
@@ -1048,7 +1048,7 @@ namespace drawinglayer
getViewInformation2D().getExtendedInformationSequence());
updateViewInformation(aViewInformation2D);
- // proccess decomposed content
+ // process decomposed content
process(rPagePreviewCandidate.get2DDecomposition(getViewInformation2D()));
// restore transformations