diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2022-09-08 11:12:27 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-09-11 17:16:59 +0200 |
commit | c747486335c089baf440b8f040d3ffdc14aa5049 (patch) | |
tree | 0d173f69ac82099cfb8bde3ac2831a682665391d /vcl/source/graphic | |
parent | 5f5f2f8107b6176654bfb9a30c21b7d5e0c62c6f (diff) |
basegfx: replace typedef with a class B2DSize based on Size2D
Change-Id: Id8b3c2bcf0bf4be5aba2812b0edda479bc20c6a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139683
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl/source/graphic')
-rw-r--r-- | vcl/source/graphic/VectorGraphicSearch.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/graphic/VectorGraphicSearch.cxx b/vcl/source/graphic/VectorGraphicSearch.cxx index 69e69741ab42..c2f624417552 100644 --- a/vcl/source/graphic/VectorGraphicSearch.cxx +++ b/vcl/source/graphic/VectorGraphicSearch.cxx @@ -56,8 +56,8 @@ public: return aSize; basegfx::B2DSize aPDFSize = mpPdfDocument->getPageSize(mnPageIndex); - aSize = basegfx::B2DSize(convertPointToMm100(aPDFSize.getX()), - convertPointToMm100(aPDFSize.getY())); + aSize = basegfx::B2DSize(convertPointToMm100(aPDFSize.getWidth()), + convertPointToMm100(aPDFSize.getHeight())); return aSize; } @@ -159,7 +159,7 @@ public: if (nSize <= 0) return aRectangles; - double fPageHeight = getPageSize().getY(); + double fPageHeight = getPageSize().getHeight(); for (int nCount = 0; nCount < nSize; nCount++) { |