summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-06-07 19:16:33 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-06-08 09:12:45 +0200
commit63e404e4105cee07c9e58760cdc4ad7e917fa3de (patch)
tree5285057fbe02370beea7a5a43232aa2b7eda55ea /svx
parentbc4e43dd926bbe6f5315b5c372770ac8c7222177 (diff)
Fix typos
Change-Id: Iaadbdee429dcb1d15824858e422eacfaedf9a4f4 Reviewed-on: https://gerrit.libreoffice.org/55442 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdpdf.cxx2
-rw-r--r--svx/source/svdraw/svdpdf.hxx4
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;