diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-09-03 16:46:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-03 16:46:08 +0200 |
commit | de16a4e0cc175df844c4365b1ad3fc3066bb2a2c (patch) | |
tree | 87e23f0a0137462a17fb8413b893c62b6e940d0c /embeddedobj/source | |
parent | c578ed53615d219768bc1f07506b1e8756375db6 (diff) |
Some builds seem to require a prefixed "system" here
... MacOSX-Intel@1-built_no-moz_on_10.6.8 complained with "oleembed.cxx:881:
error: "system" has not been declared"; and see previous
88d7f9fbe416d0f4c5edc4a9b5c9560d1d82167b "fwk139: #i10000# adopt for linux."
Change-Id: Ibd6f6aae69a7fcca7a60a85ed2d82dd5e775deea
Diffstat (limited to 'embeddedobj/source')
-rw-r--r-- | embeddedobj/source/msole/oleembed.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embeddedobj/source/msole/oleembed.cxx b/embeddedobj/source/msole/oleembed.cxx index c57955f697db..14db754ff4f9 100644 --- a/embeddedobj/source/msole/oleembed.cxx +++ b/embeddedobj/source/msole/oleembed.cxx @@ -878,9 +878,9 @@ void SAL_CALL OleEmbeddedObject::doVerb( sal_Int32 nVerbID ) if (!m_aTempDumpURL.isEmpty()) { - uno::Reference< system::XSystemShellExecute > xSystemShellExecute( - system::SystemShellExecute::create(comphelper::ComponentContext(m_xFactory).getUNOContext()) ); - xSystemShellExecute->execute(m_aTempDumpURL, ::rtl::OUString(), system::SystemShellExecuteFlags::URIS_ONLY); + uno::Reference< ::com::sun::star::system::XSystemShellExecute > xSystemShellExecute( + ::com::sun::star::system::SystemShellExecute::create(comphelper::ComponentContext(m_xFactory).getUNOContext()) ); + xSystemShellExecute->execute(m_aTempDumpURL, ::rtl::OUString(), ::com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY); } else throw embed::UnreachableStateException(); |