summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oox/source/drawingml/diagram/diagramhelper.cxx2
-rw-r--r--oox/source/ppt/pptshape.cxx2
-rw-r--r--sal/osl/w32/file_dirvol.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/drawingml/diagram/diagramhelper.cxx b/oox/source/drawingml/diagram/diagramhelper.cxx
index 8b54ff4e8a0f..50ea44c4aeb6 100644
--- a/oox/source/drawingml/diagram/diagramhelper.cxx
+++ b/oox/source/drawingml/diagram/diagramhelper.cxx
@@ -65,7 +65,7 @@ void AdvancedDiagramHelper::reLayout(SdrObjGroup& rTarget)
rTarget.TRGetBaseGeometry(aTransformation, aPolyPolygon);
// create temporary oox::Shape as target. No longer needed is to keep/remember
- // the original oox::Shape to do that. Use original Size and Pos frrom initial import
+ // the original oox::Shape to do that. Use original Size and Pos from initial import
// to get the same layout(s)
oox::drawingml::ShapePtr pShapePtr = std::make_shared<Shape>( "com.sun.star.drawing.GroupShape" );
pShapePtr->setDiagramType();
diff --git a/oox/source/ppt/pptshape.cxx b/oox/source/ppt/pptshape.cxx
index 581b85db0e0a..6c12e1f3dd64 100644
--- a/oox/source/ppt/pptshape.cxx
+++ b/oox/source/ppt/pptshape.cxx
@@ -538,7 +538,7 @@ void PPTShape::addShape(
Reference<XShapes> xShapes(xShape, UNO_QUERY);
if (xShapes.is())
{
- // tempoarily remember setting
+ // temporarily remember setting
NamedShapePairs* pDiagramFontHeights(rFilterBase.getDiagramFontHeights());
// for shapes unequal to FRAMETYPE_DIAGRAM do
diff --git a/sal/osl/w32/file_dirvol.cxx b/sal/osl/w32/file_dirvol.cxx
index dc90f474dcfe..793a5ed52d21 100644
--- a/sal/osl/w32/file_dirvol.cxx
+++ b/sal/osl/w32/file_dirvol.cxx
@@ -1595,9 +1595,9 @@ oslFileError SAL_CALL osl_getFileStatus(
{
/* Capitalizes drive name (single letter). Windows file paths are processed
case-sensitively. While parsing a path, function osl_DirectoryItem has case
- PATHTYPE_VOLUME for drives, and capatalizes them. That can be overwritten by
+ PATHTYPE_VOLUME for drives, and capitalizes them. That can be overwritten by
function osl_getFileStatus, in it win32 api GetLongPathNameW does no
- capatilization. Thus it needs to be postprocessed.*/
+ capitalization. Thus it needs to be postprocessed.*/
sal_Int32 nIndex = rtl_ustr_indexOfChar(aBuffer, ':');
if (nIndex > 0) {
aBuffer[nIndex - 1] = rtl::toAsciiUpperCase(aBuffer[nIndex - 1]);