diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-10-08 11:36:34 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2018-10-08 12:42:22 +0300 |
commit | 80258f93448d278a50cd4aaf130d821a01361a34 (patch) | |
tree | 176a84ed330b21bec53bb1602248bedea22d6758 /vcl | |
parent | 5231818a373ed17df751f5dc31c9edc4a0037127 (diff) |
Define a dummy GlyphCache class here for now
Change-Id: Ib26ed91ca90cc2f38e21cce54c093795b1059877
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/ios/dummies.cxx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/vcl/ios/dummies.cxx b/vcl/ios/dummies.cxx index 641b0db2d6bf..94e2a86204ee 100644 --- a/vcl/ios/dummies.cxx +++ b/vcl/ios/dummies.cxx @@ -23,6 +23,9 @@ #include "unx/fontmanager.hxx" #include "unx/gendata.hxx" +class GlyphCache +{ +}; std::unique_ptr<SalPrinter> SvpSalInstance::CreatePrinter( SalInfoPrinter* /* pInfoPrinter */ ) { @@ -125,16 +128,19 @@ bool AquaSalGraphics::drawEPS( long, long, long, long, void*, sal_uLong ) using namespace psp; GenericUnixSalData::GenericUnixSalData(GenericUnixSalDataType const t, SalInstance *const pInstance) - : m_eType(t), m_pDisplay(nullptr), m_pPrintFontManager(nullptr) + : m_eType(t) + , m_pDisplay(nullptr) + , m_pGlyphCache(new GlyphCache) + , m_pPrintFontManager(nullptr) { - m_pInstance = pInstance; SetSalData(this); + m_pInstance = pInstance; + SetSalData(this); } GenericUnixSalData::~GenericUnixSalData() { } - PrintFontManager::~PrintFontManager() { } |