Author: zhangjf Date: Tue Sep 25 05:51:43 2012 New Revision: 1389717 URL: http://svn.apache.org/viewvc?rev=1389717&view=rev Log: Fix MacOS build break
Modified: incubator/ooo/trunk/main/cui/source/dialogs/about.cxx Modified: incubator/ooo/trunk/main/cui/source/dialogs/about.cxx URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/cui/source/dialogs/about.cxx?rev=1389717&r1=1389716&r2=1389717&view=diff ============================================================================== --- incubator/ooo/trunk/main/cui/source/dialogs/about.cxx (original) +++ incubator/ooo/trunk/main/cui/source/dialogs/about.cxx Tue Sep 25 05:51:43 2012 @@ -534,13 +534,13 @@ IMPL_LINK ( AboutDialog, OpenLinkHdl_Imp { 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 ) {