summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2017-03-04 01:05:21 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2017-03-04 02:47:50 +0200
commitdf4f30560a1297e2a42a66f20660d53004e44f0b (patch)
treef2f6ed05f41f5cf7e0e6e7d1c7e68c43129373a9 /vcl/inc
parentbaf3940bcafbb1acbaf75e1149e4895986f4c50f (diff)
Drop dead code
We don’t try to render vertical text with DirectWrite any more, so all of this is dead code now. Change-Id: If9f513f6b96fd65d275b9ec46c6e349f1c335bcf
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/win/winlayout.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/inc/win/winlayout.hxx b/vcl/inc/win/winlayout.hxx
index 29122fca42d3..cca6a46919e3 100644
--- a/vcl/inc/win/winlayout.hxx
+++ b/vcl/inc/win/winlayout.hxx
@@ -200,15 +200,11 @@ class D2DWriteTextOutRenderer : public TextOutRenderer
typedef HRESULT(WINAPI *pD2D1CreateFactory_t)(D2D1_FACTORY_TYPE,
REFIID, const D2D1_FACTORY_OPTIONS *, void **);
- typedef HRESULT(WINAPI *pD2D1MakeRotateMatrix_t)(float, D2D1_POINT_2F,
- D2D1_MATRIX_3X2_F*);
-
typedef HRESULT(WINAPI *pDWriteCreateFactory_t)(DWRITE_FACTORY_TYPE,
REFIID, IUnknown **);
static HINSTANCE mmD2d1, mmDWrite;
static pD2D1CreateFactory_t D2D1CreateFactory;
- static pD2D1MakeRotateMatrix_t D2D1MakeRotateMatrix;
static pDWriteCreateFactory_t DWriteCreateFactory;
public: