diff options
author | Jian Fang Zhang <zhangjf@apache.org> | 2012-09-25 04:51:43 +0000 |
---|---|---|
committer | Jian Fang Zhang <zhangjf@apache.org> | 2012-09-25 04:51:43 +0000 |
commit | da8df30daac2b601d7d6a79fca9f8a807e1013a9 (patch) | |
tree | ed5df817b026d73ef32b8ff1a713c3d091c0c917 | |
parent | a1817251fd384d58a3942d28849723ac84bd315d (diff) |
Fix MacOS build break
Notes
Notes:
prefer: 756352698de348226c685bad9ab80ea138e5da75
-rw-r--r-- | cui/source/dialogs/about.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index b4da4b7a86bb..d690dd6db246 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -534,13 +534,13 @@ IMPL_LINK ( AboutDialog, OpenLinkHdl_Impl, svt::FixedHyperlink*, EMPTYARG ) { uno::Reference< uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext(); - uno::Reference< system::XSystemShellExecute > xSystemShell( + uno::Reference< com::sun::star::system::XSystemShellExecute > xSystemShell( xContext->getServiceManager()->createInstanceWithContext( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.system.SystemShellExecute" ) ), xContext ), uno::UNO_QUERY_THROW ); if ( xSystemShell.is() ) - xSystemShell->execute( sURL, rtl::OUString(), system::SystemShellExecuteFlags::DEFAULTS ); + xSystemShell->execute( sURL, rtl::OUString(), com::sun::star::system::SystemShellExecuteFlags::DEFAULTS ); } catch( const uno::Exception& e ) { |