From de16a4e0cc175df844c4365b1ad3fc3066bb2a2c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 3 Sep 2012 16:46:08 +0200 Subject: 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 --- embeddedobj/source/msole/oleembed.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'embeddedobj') 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(); -- cgit