Kaydet (Commit) ff6ad890 authored tarafından Noel Grandin's avatar Noel Grandin

fdo#46808, make MacOS tinderbox happy

Change-Id: I17a2a1861f35beedc8c9ec23738fbd042b1a1f63
üst 77856e81
...@@ -88,12 +88,12 @@ IMPL_LINK_NOARG(NewerVersionWarningDialog, UpdateHdl) ...@@ -88,12 +88,12 @@ IMPL_LINK_NOARG(NewerVersionWarningDialog, UpdateHdl)
uno::Reference< uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext(); uno::Reference< uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext();
if ( !sNotifyURL.isEmpty() && !m_sVersion.isEmpty() ) if ( !sNotifyURL.isEmpty() && !m_sVersion.isEmpty() )
{ {
uno::Reference< system::XSystemShellExecute > xSystemShell( system::SystemShellExecute::create(xContext) ); uno::Reference< com::sun::star::system::XSystemShellExecute > xSystemShell( com::sun::star::system::SystemShellExecute::create(xContext) );
sNotifyURL += m_sVersion; sNotifyURL += m_sVersion;
if ( !sNotifyURL.isEmpty() ) if ( !sNotifyURL.isEmpty() )
{ {
xSystemShell->execute( xSystemShell->execute(
sNotifyURL, ::rtl::OUString(), system::SystemShellExecuteFlags::URIS_ONLY ); sNotifyURL, ::rtl::OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY );
} }
} }
else else
......
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