summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/vcl/ITiledRenderable.hxx2
-rw-r--r--vcl/source/gdi/virdev.cxx11
2 files changed, 12 insertions, 1 deletions
diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx
index fecfd6c77fae..e9cea10af371 100644
--- a/include/vcl/ITiledRenderable.hxx
+++ b/include/vcl/ITiledRenderable.hxx
@@ -20,7 +20,7 @@ namespace vcl
class VCL_DLLPUBLIC ITiledRenderable
{
public:
- virtual ~ITiledRenderable() {};
+ virtual ~ITiledRenderable();
/**
* Paint a tile to a given VirtualDevice.
diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx
index 54cd376c0ce0..67a931236e18 100644
--- a/vcl/source/gdi/virdev.cxx
+++ b/vcl/source/gdi/virdev.cxx
@@ -32,6 +32,17 @@
#include "PhysicalFontCollection.hxx"
#include <svdata.hxx>
+#include <vcl/ITiledRenderable.hxx>
+
+namespace vcl
+{
+
+ITiledRenderable::~ITiledRenderable()
+{
+}
+
+}
+
using namespace ::com::sun::star::uno;
bool VirtualDevice::AcquireGraphics() const