diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-07 13:51:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-07 13:51:26 +0200 |
commit | d4e242510f0346fd9bd79297b9816071ccb252c0 (patch) | |
tree | d5852dd10a8f636fedd6fe9a990fe2a03578bd0a /dbaccess | |
parent | ed2e7fbc9aa335f2cf4513e1a7795ad69d660fcc (diff) |
Fix MSVC build
Change-Id: I73fdb73a26f49acf058fcc4ffaa1dbfa92bd7261
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/misc/TableCopyHelper.cxx | 2 |
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(); |