diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2017-03-04 05:40:39 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2017-03-04 14:21:21 +0200 |
commit | 7453cb58df4ce434a1252567f961cfe497064aca (patch) | |
tree | 059372f3c8bb28a472de6d099d8bd7364424945b /vcl/inc | |
parent | 073d920ef5914b5dfe491dbaf7fb18ba56293b85 (diff) |
pPos and pGetNextGlypInfo always have the same value
Change-Id: Iec46e0aefff71cbeb2face4f55e5c3a4d6698995
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/win/winlayout.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/vcl/inc/win/winlayout.hxx b/vcl/inc/win/winlayout.hxx index 2c6cc269fc3b..bc1890b0ee11 100644 --- a/vcl/inc/win/winlayout.hxx +++ b/vcl/inc/win/winlayout.hxx @@ -179,8 +179,7 @@ public: virtual bool operator ()(CommonSalLayout const &rLayout, SalGraphics &rGraphics, - HDC hDC, - Point* pPos, int* pGetNextGlypInfo) = 0; + HDC hDC) = 0; }; class ExTextOutRenderer : public TextOutRenderer @@ -193,8 +192,7 @@ public: bool operator ()(CommonSalLayout const &rLayout, SalGraphics &rGraphics, - HDC hDC, - Point* pPos, int* pGetNextGlypInfo) override; + HDC hDC) override; }; class D2DWriteTextOutRenderer : public TextOutRenderer @@ -217,8 +215,7 @@ public: bool operator ()(CommonSalLayout const &rLayout, SalGraphics &rGraphics, - HDC hDC, - Point* pPos, int* pGetNextGlypInfo) override; + HDC hDC) override; inline bool BindDC(HDC hDC, Rectangle const & rRect = Rectangle(0, 0, 0, 0)) { RECT const rc = { rRect.Left(), rRect.Top(), rRect.Right(), rRect.Bottom() }; |