[Libreoffice-commits] core.git: sc/source

Matúš Kukan matus.kukan at collabora.com
Thu Nov 28 11:53:54 PST 2013


 sc/source/ui/inc/datastream.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f562ec13d08b5acfe0ea4615d50e808aaf84a3c2
Author: Matúš Kukan <matus.kukan at collabora.com>
Date:   Thu Nov 28 20:52:40 2013 +0100

    fix error C3665: override specifier 'override' not allowed on a destructor
    
    Change-Id: I002d1d9b3a0194e9d0f404798698a8c2353021b1

diff --git a/sc/source/ui/inc/datastream.hxx b/sc/source/ui/inc/datastream.hxx
index c329a3d..b1962de 100644
--- a/sc/source/ui/inc/datastream.hxx
+++ b/sc/source/ui/inc/datastream.hxx
@@ -45,7 +45,7 @@ public:
 
     DataStream(ScDocShell *pShell, const OUString& rURL, const OUString& rRange,
             sal_Int32 nLimit, const OUString& rMove, sal_uInt32 nSettings);
-    virtual ~DataStream() SAL_OVERRIDE;
+    virtual ~DataStream();
     // sfx2::SvBaseLink
     virtual sfx2::SvBaseLink::UpdateResult DataChanged(
             const OUString& , const css::uno::Any& ) SAL_OVERRIDE;


More information about the Libreoffice-commits mailing list