diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-06-25 17:18:46 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-06-25 17:19:36 +0200 |
commit | 0bb6fd2f3a1a2623cc867242f36de1433f6e02c0 (patch) | |
tree | 81e312ca36ca549885ab00146efcb61d5bd4830d /vcl/source/gdi/virdev.cxx | |
parent | 533c6cb6bad6ef0432e8eebbfd4daf90ef71f3b4 (diff) |
vcl: MSVC can't link inline ITiledRenderable dtor
Change-Id: Idbb776de489e0c6e6ae14cb65907ac75cfca3851
Diffstat (limited to 'vcl/source/gdi/virdev.cxx')
-rw-r--r-- | vcl/source/gdi/virdev.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
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 |