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

Stephan Bergmann sbergman at redhat.com
Thu May 7 04:52:04 PDT 2015


 dbaccess/source/ui/misc/TableCopyHelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d4e242510f0346fd9bd79297b9816071ccb252c0
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu May 7 13:51:26 2015 +0200

    Fix MSVC build
    
    Change-Id: I73fdb73a26f49acf058fcc4ffaa1dbfa92bd7261

diff --git a/dbaccess/source/ui/misc/TableCopyHelper.cxx b/dbaccess/source/ui/misc/TableCopyHelper.cxx
index 0541b88..4457f97 100644
--- a/dbaccess/source/ui/misc/TableCopyHelper.cxx
+++ b/dbaccess/source/ui/misc/TableCopyHelper.cxx
@@ -286,7 +286,7 @@ bool OTableCopyHelper::copyTagTable(const TransferableDataHelper& _aDroppedData
             // now we need to copy the stream
             ::utl::TempFile aTmp;
             _rAsyncDrop.aUrl = aTmp.GetURL();
-            tools::SvRef<SotStorageStream> aNew = new SotStorageStream( aTmp.GetFileName() );
+            ::tools::SvRef<SotStorageStream> aNew = new SotStorageStream( aTmp.GetFileName() );
             _rAsyncDrop.aHtmlRtfStorage->Seek(STREAM_SEEK_TO_BEGIN);
             _rAsyncDrop.aHtmlRtfStorage->CopyTo( aNew );
             aNew->Commit();


More information about the Libreoffice-commits mailing list