diff options
Diffstat (limited to 'shell/source/win32/simplemail')
-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 |
3 files changed, 3 insertions, 3 deletions
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; } |