summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-11-15 10:40:42 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-11-15 12:17:44 +0100
commit893d37c379ca053cf033bf1aa2e175053af6da28 (patch)
tree6e48c9f83e7a0e65eecc763ac575a0b3568d899b
parent1577f53fa58378ec615ac3d00f96a6aff71c0c9e (diff)
blind fix for OSX
Change-Id: I7050057e5fa6da5bb5517713f6cbbfa60e47984b
-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 );