[Libreoffice-commits] core.git: 2 commits - include/svx svx/source
Andrea Gelmini
andrea.gelmini at gelma.net
Fri Jun 8 07:13:08 UTC 2018
include/svx/xmlgrhlp.hxx | 1 -
svx/source/svdraw/svdpdf.cxx | 2 +-
svx/source/svdraw/svdpdf.hxx | 4 ++--
3 files changed, 3 insertions(+), 4 deletions(-)
New commits:
commit f81714d8e70569506bd10cffc9dc6c18d7c6966f
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date: Thu Jun 7 19:03:55 2018 +0200
Removed duplicated include
Change-Id: I41e32c7a792852351259cd37b37740db5c3f2aaa
Reviewed-on: https://gerrit.libreoffice.org/55441
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Jenkins <ci at libreoffice.org>
diff --git a/include/svx/xmlgrhlp.hxx b/include/svx/xmlgrhlp.hxx
index 4d9fa58a1b49..e4f7952d6215 100644
--- a/include/svx/xmlgrhlp.hxx
+++ b/include/svx/xmlgrhlp.hxx
@@ -32,7 +32,6 @@
#include <com/sun/star/document/XBinaryStreamResolver.hpp>
#include <com/sun/star/embed/XStorage.hpp>
#include <svx/svxdllapi.h>
-#include <unordered_map>
enum class SvXMLGraphicHelperMode
{
commit 63e404e4105cee07c9e58760cdc4ad7e917fa3de
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date: Thu Jun 7 19:16:33 2018 +0200
Fix typos
Change-Id: Iaadbdee429dcb1d15824858e422eacfaedf9a4f4
Reviewed-on: https://gerrit.libreoffice.org/55442
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Jenkins <ci at libreoffice.org>
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;
More information about the Libreoffice-commits
mailing list