diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdpdf.cxx | 2 | ||||
-rw-r--r-- | svx/source/svdraw/svdpdf.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdpdf.cxx b/svx/source/svdraw/svdpdf.cxx index 6721f463f53c..0b6d70ff26a8 100644 --- a/svx/source/svdraw/svdpdf.cxx +++ b/svx/source/svdraw/svdpdf.cxx @@ -1121,7 +1121,7 @@ void ImpSdrPdfImport::ImportPath(FPDF_PAGEOBJECT pPageObject, int /*nPageObjectI float fx, fy; if (!FPDFPathSegment_GetPoint(pPathSegment, &fx, &fy)) { - SAL_WARN("sd.filter", "Failed to get PDF path segement point"); + SAL_WARN("sd.filter", "Failed to get PDF path segment point"); continue; } diff --git a/svx/source/svdraw/svdpdf.hxx b/svx/source/svdraw/svdpdf.hxx index 37f112eeda28..4110a92e260a 100644 --- a/svx/source/svdraw/svdpdf.hxx +++ b/svx/source/svdraw/svdpdf.hxx @@ -90,7 +90,7 @@ class ImpSdrPdfImport final double e() const { return me; } double f() const { return mf; } - /// Mutliply this * other. + /// Multiply this * other. void Concatinate(const Matrix& other) { ma = ma * other.ma + mb * other.mc; @@ -198,7 +198,7 @@ class ImpSdrPdfImport final Matrix mCurMatrix; /// Correct the vertical coordinate to start at the top. - /// PDF coordinate system has orign at the bottom right. + /// PDF coordinate system has origin at the bottom right. double correctVertOrigin(double offsetPts) const { return mdPageHeightPts - offsetPts; } /// Convert PDF points to logic (twips). tools::Rectangle PointsToLogic(double left, double right, double top, double bottom) const; |