diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-24 15:22:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-24 18:08:39 +0100 |
commit | c6dcd7b7f392ef47b2e66445239ce867e51d5adb (patch) | |
tree | 2eed08975ce69c4e00d4ab0530eb1222622edab4 /shell | |
parent | f17568f9f3ea6cded3fe13437977ef841d56a7c1 (diff) |
Fix various Windows-only XServiceInfo implementations
...to match what is recorded in the .component files
Change-Id: Ibc5bb0575f3869317e4d14614cf1dad0af728ddc
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/SysShentry.cxx | 2 | ||||
-rw-r--r-- | shell/source/win32/simplemail/smplmail.component | 2 | ||||
-rw-r--r-- | shell/source/win32/simplemail/smplmailentry.cxx | 2 | ||||
-rw-r--r-- | shell/source/win32/simplemail/smplmailsuppl.cxx | 2 | ||||
-rw-r--r-- | shell/source/win32/syssh.component | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/shell/source/win32/SysShentry.cxx b/shell/source/win32/SysShentry.cxx index 6d324b0f6a4a..a0551ad0ed3a 100644 --- a/shell/source/win32/SysShentry.cxx +++ b/shell/source/win32/SysShentry.cxx @@ -34,7 +34,7 @@ using namespace ::cppu ; using com::sun::star::system::XSystemShellExecute; #define SYSSHEXEC_SERVICE_NAME "com.sun.star.system.SystemShellExecute" -#define SYSSHEXEC_IMPL_NAME "com.sun.star.system.SystemShellExecute" +#define SYSSHEXEC_IMPL_NAME "com.sun.star.sys.shell.SystemShellExecute" diff --git a/shell/source/win32/simplemail/smplmail.component b/shell/source/win32/simplemail/smplmail.component index c37a46ee8830..556c4099b842 100644 --- a/shell/source/win32/simplemail/smplmail.component +++ b/shell/source/win32/simplemail/smplmail.component @@ -19,7 +19,7 @@ <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" prefix="smplmail" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.system.SimpleSystemMail"> + <implementation name="com.sun.star.sys.shell.SimpleSystemMail"> <service name="com.sun.star.system.SimpleSystemMail"/> </implementation> </component> diff --git a/shell/source/win32/simplemail/smplmailentry.cxx b/shell/source/win32/simplemail/smplmailentry.cxx index d99d6a7f5e83..c192d3c2e024 100644 --- a/shell/source/win32/simplemail/smplmailentry.cxx +++ b/shell/source/win32/simplemail/smplmailentry.cxx @@ -34,7 +34,7 @@ using namespace ::cppu ; using com::sun::star::system::XSimpleMailClientSupplier; #define COMP_SERVICE_NAME "com.sun.star.system.SimpleSystemMail" -#define COMP_IMPL_NAME "com.sun.star.system.SimpleSystemMail" +#define COMP_IMPL_NAME "com.sun.star.sys.shell.SimpleSystemMail" diff --git a/shell/source/win32/simplemail/smplmailsuppl.cxx b/shell/source/win32/simplemail/smplmailsuppl.cxx index fea39960ccfc..d92de1844860 100644 --- a/shell/source/win32/simplemail/smplmailsuppl.cxx +++ b/shell/source/win32/simplemail/smplmailsuppl.cxx @@ -39,7 +39,7 @@ namespace // private Sequence< OUString > SAL_CALL Component_getSupportedServiceNames() { Sequence< OUString > aRet(1); - aRet[0] = "com.sun.star.sys.shell.SimpleSystemMail"; + aRet[0] = "com.sun.star.system.SimpleSystemMail"; return aRet; } diff --git a/shell/source/win32/syssh.component b/shell/source/win32/syssh.component index b488e16a0c23..9235d1d20f99 100644 --- a/shell/source/win32/syssh.component +++ b/shell/source/win32/syssh.component @@ -19,7 +19,7 @@ <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" prefix="syssh" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.system.SystemShellExecute"> + <implementation name="com.sun.star.sys.shell.SystemShellExecute"> <service name="com.sun.star.system.SystemShellExecute"/> </implementation> </component> |