From b87e7075e3cf92684ba901165d785be8cd5ed839 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 14 Nov 2013 21:46:01 +0100 Subject: sfx2: mac tinderbox says "system" is ambiguous so be more verbose... Change-Id: I14c3077cbdadcde651cf2772ecb833aa2a81d94b --- sfx2/source/dialog/backingwindow.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sfx2/source/dialog/backingwindow.cxx b/sfx2/source/dialog/backingwindow.cxx index 31d399e27831..8ee2919cb7a1 100644 --- a/sfx2/source/dialog/backingwindow.cxx +++ b/sfx2/source/dialog/backingwindow.cxx @@ -377,8 +377,12 @@ IMPL_LINK(BackingWindow, ExtLinkClickHdl, Button*, pButton) sURL = value.get(); localizeWebserviceURI(sURL); - Reference xSystemShellExecute(system::SystemShellExecute::create(comphelper::getProcessComponentContext())); - xSystemShellExecute->execute(sURL, OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY); + Reference const + xSystemShellExecute( + css::system::SystemShellExecute::create( + ::comphelper::getProcessComponentContext())); + xSystemShellExecute->execute(sURL, OUString(), + css::system::SystemShellExecuteFlags::URIS_ONLY); } } catch (const Exception&) -- cgit