summaryrefslogtreecommitdiff
path: root/vcl/skia
diff options
context:
space:
mode:
authorKhaled Hosny <khaled@libreoffice.org>2023-07-19 08:50:50 +0300
committerخالد حسني <khaled@libreoffice.org>2023-07-23 06:04:31 +0200
commit11b513da7f850307cf8371f155e87e9c52f2dd87 (patch)
treeda84d280b4e6ec657f76238062ef1766c505a6b4 /vcl/skia
parent063d71f4d3a145a5e28b26c6e5d1a7ae5b5f8891 (diff)
vcl: Drop now unneeded DevicePoint typedef
It has been always typedef'd to basegfx::B2DPoint since: commit 5e218b5c51f7d9cd10bd9db832879efca41b9c75 Date: Wed Jan 12 21:19:32 2022 +0000 always use B2DPoint for DevicePoint Change-Id: I9f5202d5a71c77dd79f1759923917c26bf68a9af Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154632 Tested-by: Jenkins Reviewed-by: خالد حسني <khaled@libreoffice.org>
Diffstat (limited to 'vcl/skia')
-rw-r--r--vcl/skia/gdiimpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/skia/gdiimpl.cxx b/vcl/skia/gdiimpl.cxx
index fef54c8c1326..40341bba85f7 100644
--- a/vcl/skia/gdiimpl.cxx
+++ b/vcl/skia/gdiimpl.cxx
@@ -2129,7 +2129,7 @@ void SkiaSalGraphicsImpl::drawGenericLayout(const GenericSalLayout& layout, Colo
glyphIds.reserve(256);
glyphForms.reserve(256);
verticals.reserve(256);
- DevicePoint aPos;
+ basegfx::B2DPoint aPos;
const GlyphItem* pGlyph;
int nStart = 0;
while (layout.GetNextGlyph(&pGlyph, aPos, nStart))