summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-09-03 18:27:13 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-09-03 18:34:24 +0200
commit756352698de348226c685bad9ab80ea138e5da75 (patch)
tree7e72325d45f5a7e50ed7468b281100cc16ac91b3 /framework
parent"using namespace ::com::sun::star" caused sdbcx::... ambiguity (diff)
downloadcore-756352698de348226c685bad9ab80ea138e5da75.tar.gz
core-756352698de348226c685bad9ab80ea138e5da75.zip
More places that require a prefixed "system"
Change-Id: I49cf1f02faf70a5a92ab45e7678253ba4e5f68d0
Diffstat (limited to 'framework')
-rw-r--r--framework/source/services/backingwindow.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/services/backingwindow.cxx b/framework/source/services/backingwindow.cxx
index 560330c1abae..cc67aab9a990 100644
--- a/framework/source/services/backingwindow.cxx
+++ b/framework/source/services/backingwindow.cxx
@@ -877,8 +877,8 @@ IMPL_LINK_NOARG(BackingWindow, ToolboxHdl)
sURL = value.get<rtl::OUString> ();
localizeWebserviceURI(sURL);
- Reference< system::XSystemShellExecute > xSystemShellExecute(
- system::SystemShellExecute::create(comphelper::getProcessComponentContext()));
+ Reference< com::sun::star::system::XSystemShellExecute > xSystemShellExecute(
+ com::sun::star::system::SystemShellExecute::create(comphelper::getProcessComponentContext()));
//throws css::lang::IllegalArgumentException, css::system::SystemShellExecuteException
xSystemShellExecute->execute( sURL, rtl::OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY);
}