[Libreoffice-commits] core.git: include/vcl vcl/source

Michael Stahl mstahl at redhat.com
Wed Jun 25 08:23:57 PDT 2014


 include/vcl/ITiledRenderable.hxx |    2 +-
 vcl/source/gdi/virdev.cxx        |   11 +++++++++++
 2 files changed, 12 insertions(+), 1 deletion(-)

New commits:
commit 0bb6fd2f3a1a2623cc867242f36de1433f6e02c0
Author: Michael Stahl <mstahl at redhat.com>
Date:   Wed Jun 25 17:18:46 2014 +0200

    vcl: MSVC can't link inline ITiledRenderable dtor
    
    Change-Id: Idbb776de489e0c6e6ae14cb65907ac75cfca3851

diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx
index fecfd6c..e9cea10 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 54cd376..67a9312 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


More information about the Libreoffice-commits mailing list