summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/inc/quartz/salgdi.h2
-rw-r--r--vcl/quartz/salgdi.cxx5
2 files changed, 7 insertions, 0 deletions
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 );