summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-11-14 21:46:01 +0100
committerMichael Stahl <mstahl@redhat.com>2013-11-14 21:46:27 +0100
commitb87e7075e3cf92684ba901165d785be8cd5ed839 (patch)
tree823fc6549f3ac16db8aa2b8ff0963f45812a7b00
parentd5d307d647c67c2d620eae5651c54c02178b5f52 (diff)
sfx2: mac tinderbox says "system" is ambiguous so be more verbose...
Change-Id: I14c3077cbdadcde651cf2772ecb833aa2a81d94b
-rw-r--r--sfx2/source/dialog/backingwindow.cxx8
1 files 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<OUString>();
localizeWebserviceURI(sURL);
- Reference<system::XSystemShellExecute> xSystemShellExecute(system::SystemShellExecute::create(comphelper::getProcessComponentContext()));
- xSystemShellExecute->execute(sURL, OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY);
+ Reference<css::system::XSystemShellExecute> const
+ xSystemShellExecute(
+ css::system::SystemShellExecute::create(
+ ::comphelper::getProcessComponentContext()));
+ xSystemShellExecute->execute(sURL, OUString(),
+ css::system::SystemShellExecuteFlags::URIS_ONLY);
}
}
catch (const Exception&)