summaryrefslogtreecommitdiff
path: root/svtools
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 /svtools
parenta11940a871177bfce6fd5ac2e899a6659fb49fb3 (diff)
More places that require a prefixed "system"
Change-Id: I49cf1f02faf70a5a92ab45e7678253ba4e5f68d0
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/contnr/templwin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/contnr/templwin.cxx b/svtools/source/contnr/templwin.cxx
index 3f8df8aa2a64..9a77b770a851 100644
--- a/svtools/source/contnr/templwin.cxx
+++ b/svtools/source/contnr/templwin.cxx
@@ -1682,10 +1682,10 @@ IMPL_LINK_NOARG(SvtDocumentTemplateDialog, OpenLinkHdl_Impl)
{
uno::Reference< uno::XComponentContext > xContext =
::comphelper::getProcessComponentContext();
- uno::Reference< system::XSystemShellExecute > xSystemShell(
- system::SystemShellExecute::create(xContext) );
+ uno::Reference< com::sun::star::system::XSystemShellExecute > xSystemShell(
+ com::sun::star::system::SystemShellExecute::create(xContext) );
if ( xSystemShell.is() )
- xSystemShell->execute( sURL, ::rtl::OUString(), system::SystemShellExecuteFlags::URIS_ONLY );
+ xSystemShell->execute( sURL, ::rtl::OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY );
EndDialog( RET_CANCEL );
}
catch( const uno::Exception& e )