Kaydet (Commit) 80258f93 authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Tor Lillqvist

Define a dummy GlyphCache class here for now

Change-Id: Ib26ed91ca90cc2f38e21cce54c093795b1059877
üst 5231818a
......@@ -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()
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment