summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-07 13:51:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-07 13:51:26 +0200
commitd4e242510f0346fd9bd79297b9816071ccb252c0 (patch)
treed5852dd10a8f636fedd6fe9a990fe2a03578bd0a /dbaccess
parented2e7fbc9aa335f2cf4513e1a7795ad69d660fcc (diff)
Fix MSVC build
Change-Id: I73fdb73a26f49acf058fcc4ffaa1dbfa92bd7261
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/misc/TableCopyHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/misc/TableCopyHelper.cxx b/dbaccess/source/ui/misc/TableCopyHelper.cxx
index 0541b8840d25..4457f97d3e62 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();