diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-02-08 09:12:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-02-08 09:20:29 +0100 |
commit | 350dc590b04041f15d6c570075ade425e4db93ad (patch) | |
tree | efdbcf79ff1b01050f9f73ab3f5638b7abe2c0ed /ru_RU/Lightproof.py | |
parent | 0aeb113339d2bdeb0cb7fe3a9a2b1ae1c3fd9367 (diff) |
fdo#60139: Rename bundled extensions's Lightproof service implementation names
... from org.openoffice.comp.pyuno.Lightproof... to
org.libreoffice.comp.pyuno.Lightproof... (and increment the corresponding
extensions' version numbers) to avoid clashes with any freestanding Lightproof
extension.
Diffstat (limited to 'ru_RU/Lightproof.py')
-rw-r--r-- | ru_RU/Lightproof.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ru_RU/Lightproof.py b/ru_RU/Lightproof.py index 95c56dd..cb0521e 100644 --- a/ru_RU/Lightproof.py +++ b/ru_RU/Lightproof.py @@ -23,7 +23,7 @@ class Lightproof( unohelper.Base, XProofreader, XServiceInfo, XServiceName, XSer def __init__( self, ctx, *args ): self.ctx = ctx self.ServiceName = "com.sun.star.linguistic2.Proofreader" - self.ImplementationName = "org.openoffice.comp.pyuno.Lightproof." + pkg + self.ImplementationName = "org.libreoffice.comp.pyuno.Lightproof." + pkg self.SupportedServiceNames = (self.ServiceName, ) self.locales = [] for i in locales: @@ -147,9 +147,9 @@ class Lightproof( unohelper.Base, XProofreader, XServiceInfo, XServiceName, XSer g_ImplementationHelper = unohelper.ImplementationHelper() g_ImplementationHelper.addImplementation( Lightproof, \ - "org.openoffice.comp.pyuno.Lightproof." + pkg, + "org.libreoffice.comp.pyuno.Lightproof." + pkg, ("com.sun.star.linguistic2.Proofreader",),) g_ImplementationHelper.addImplementation( lightproof_handler_ru_RU.LightproofOptionsEventHandler, \ - "org.openoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg, + "org.libreoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg, ("com.sun.star.awt.XContainerWindowEventHandler",),) |