From 893d37c379ca053cf033bf1aa2e175053af6da28 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sat, 15 Nov 2014 10:40:42 +0100 Subject: [PATCH] blind fix for OSX Change-Id: I7050057e5fa6da5bb5517713f6cbbfa60e47984b --- vcl/inc/quartz/salgdi.h | 2 ++ vcl/quartz/salgdi.cxx | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h index 6cc452674c01..d25b09373ff3 100644 --- a/vcl/inc/quartz/salgdi.h +++ b/vcl/inc/quartz/salgdi.h @@ -217,6 +217,8 @@ public: // InvalidateContext does an UnsetState and sets mrContext to 0 void InvalidateContext(); + virtual SalGraphicsImpl* GetImpl() const SAL_OVERRIDE; + virtual bool setClipRegion( const vcl::Region& ) SAL_OVERRIDE; // draw --> LineColor and FillColor and RasterOp and ClipRegion diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx index 2462ec00ecb4..f133dfdccad0 100644 --- a/vcl/quartz/salgdi.cxx +++ b/vcl/quartz/salgdi.cxx @@ -315,6 +315,11 @@ AquaSalGraphics::~AquaSalGraphics() } } +SalGraphicsImpl* AquaSalGraphics::GetImpl() const +{ + return NULL; +} + void AquaSalGraphics::SetTextColor( SalColor nSalColor ) { maTextColor = RGBAColor( nSalColor );