Kaydet (Commit) 63ce2fa4 authored tarafından Miklos Vajna's avatar Miklos Vajna

filter: fix build of embedded ole stream dumper

Change-Id: I7f9f34af52057b35f3778d84cfe98afa37817b6b
Reviewed-on: https://gerrit.libreoffice.org/54939Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
üst 8f9f66e8
...@@ -7064,7 +7064,7 @@ css::uno::Reference < css::embed::XEmbeddedObject > SvxMSDffManager::CheckForCo ...@@ -7064,7 +7064,7 @@ css::uno::Reference < css::embed::XEmbeddedObject > SvxMSDffManager::CheckForCo
aTmpName += ".bin"; aTmpName += ".bin";
SvFileStream aTmpStream(aTmpName,StreamMode::READ|StreamMode::WRITE|StreamMode::TRUNC); SvFileStream aTmpStream(aTmpName,StreamMode::READ|StreamMode::WRITE|StreamMode::TRUNC);
xMemStream->Seek(0); xMemStream->Seek(0);
*xMemStream >> aTmpStream; aTmpStream.WriteStream(*xMemStream);
aTmpStream.Close(); aTmpStream.Close();
#endif #endif
if ( pName || pFilter ) if ( pName || pFilter )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment