[Libreoffice-commits] core.git: include/linguistic linguistic/inc linguistic/source linguistic/workben

Takeshi Abe tabe at fixedpoint.jp
Thu Aug 20 23:29:06 PDT 2015


 include/linguistic/hyphdta.hxx     |    6 +++---
 include/linguistic/lngprophelp.hxx |    4 ++--
 include/linguistic/misc.hxx        |    4 ++--
 include/linguistic/spelldta.hxx    |    4 ++--
 linguistic/inc/iprcache.hxx        |    4 ++--
 linguistic/source/convdic.hxx      |    4 ++--
 linguistic/source/convdiclist.cxx  |    3 ++-
 linguistic/source/convdiclist.hxx  |    4 ++--
 linguistic/source/convdicxml.hxx   |    1 -
 linguistic/source/dicimp.hxx       |    7 +++----
 linguistic/source/dlistimp.cxx     |    2 +-
 linguistic/source/dlistimp.hxx     |    5 ++---
 linguistic/source/gciterator.cxx   |    1 -
 linguistic/source/gciterator.hxx   |    4 ++--
 linguistic/source/hhconvdic.hxx    |    1 -
 linguistic/source/hyphdsp.hxx      |    4 ++--
 linguistic/source/lngopt.cxx       |    2 --
 linguistic/source/lngopt.hxx       |    4 ++--
 linguistic/source/lngsvcmgr.cxx    |    3 ++-
 linguistic/source/lngsvcmgr.hxx    |    4 ++--
 linguistic/source/spelldsp.hxx     |    6 ++----
 linguistic/source/thesdsp.hxx      |    5 ++---
 linguistic/workben/sprophelp.hxx   |    4 ++--
 linguistic/workben/sspellimp.hxx   |    5 ++---
 24 files changed, 41 insertions(+), 50 deletions(-)

New commits:
commit 5a2d6bf3a94f127307d6a9464033b2226508ff38
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Thu Aug 20 18:40:30 2015 +0900

    linguistic: tdf#88206 replace cppu::WeakImplHelper*
    
    with the variadic variants.
    
    Change-Id: I7a4df40d680ed9e10daacd01657df9666b8cc524
    Reviewed-on: https://gerrit.libreoffice.org/17868
    Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
    Tested-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/include/linguistic/hyphdta.hxx b/include/linguistic/hyphdta.hxx
index c080f47..14768ca 100644
--- a/include/linguistic/hyphdta.hxx
+++ b/include/linguistic/hyphdta.hxx
@@ -22,14 +22,14 @@
 
 #include <com/sun/star/linguistic2/XHyphenatedWord.hpp>
 #include <com/sun/star/linguistic2/XPossibleHyphens.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <linguistic/lngdllapi.h>
 
 namespace linguistic
 {
 
 class HyphenatedWord :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XHyphenatedWord
     >
@@ -76,7 +76,7 @@ public:
 
 
 class PossibleHyphens :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XPossibleHyphens
     >
diff --git a/include/linguistic/lngprophelp.hxx b/include/linguistic/lngprophelp.hxx
index ce618d4..7578056 100644
--- a/include/linguistic/lngprophelp.hxx
+++ b/include/linguistic/lngprophelp.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_LINGUISTIC_LNGPROPHELP_HXX
 #define INCLUDED_LINGUISTIC_LNGPROPHELP_HXX
 
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 #include <com/sun/star/beans/XPropertyChangeListener.hpp>
 #include <com/sun/star/beans/PropertyValues.hpp>
@@ -49,7 +49,7 @@ namespace linguistic
 #define AE_SPELLCHECKER 1
 #define AE_HYPHENATOR   2
 
-typedef cppu::WeakImplHelper2
+typedef cppu::WeakImplHelper
 <
     ::com::sun::star::beans::XPropertyChangeListener,
     ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster
diff --git a/include/linguistic/misc.hxx b/include/linguistic/misc.hxx
index 56e7cb2..04296f1 100644
--- a/include/linguistic/misc.hxx
+++ b/include/linguistic/misc.hxx
@@ -31,7 +31,7 @@
 #include <com/sun/star/linguistic2/XHyphenatedWord.hpp>
 #include <com/sun/star/linguistic2/XLinguProperties.hpp>
 
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <unotools/pathoptions.hxx>
 #include <i18nlangtag/lang.h>
 #include <rtl/ustring.hxx>
@@ -178,7 +178,7 @@ LNG_DLLPUBLIC bool SaveDictionaries( const ::com::sun::star::uno::Reference< ::c
 // (ie the Desktop) is about to terminate
 
 class AppExitListener :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::frame::XTerminateListener
     >
diff --git a/include/linguistic/spelldta.hxx b/include/linguistic/spelldta.hxx
index 9bdfe83..0225729 100644
--- a/include/linguistic/spelldta.hxx
+++ b/include/linguistic/spelldta.hxx
@@ -24,7 +24,7 @@
 #include <com/sun/star/linguistic2/XSpellAlternatives.hpp>
 #include <com/sun/star/linguistic2/XSetSpellAlternatives.hpp>
 #include <com/sun/star/linguistic2/XSearchableDictionaryList.hpp>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <linguistic/lngdllapi.h>
 #include <boost/noncopyable.hpp>
 
@@ -61,7 +61,7 @@ void SearchSimilarText( const OUString &rText, sal_Int16 nLanguage,
 
 
 class SpellAlternatives
-    : public cppu::WeakImplHelper2
+    : public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XSpellAlternatives,
         ::com::sun::star::linguistic2::XSetSpellAlternatives
diff --git a/linguistic/inc/iprcache.hxx b/linguistic/inc/iprcache.hxx
index 855fde7..5e56a13 100644
--- a/linguistic/inc/iprcache.hxx
+++ b/linguistic/inc/iprcache.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_LINGUISTIC_INC_IPRCACHE_HXX
 #define INCLUDED_LINGUISTIC_INC_IPRCACHE_HXX
 
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
 
 #include <com/sun/star/uno/Reference.h>
 #include <com/sun/star/document/XEventListener.hpp>
@@ -51,7 +51,7 @@ protected:
 
 
 class FlushListener :
-    public cppu::WeakImplHelper2
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XDictionaryListEventListener,
         ::com::sun::star::beans::XPropertyChangeListener
diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx
index 8eae426..448c053 100644
--- a/linguistic/source/convdic.hxx
+++ b/linguistic/source/convdic.hxx
@@ -23,7 +23,7 @@
 #include <com/sun/star/linguistic2/XConversionPropertyType.hpp>
 #include <com/sun/star/util/XFlushable.hpp>
 #include <com/sun/star/lang/XServiceInfo.hpp>
-#include <cppuhelper/implbase4.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 
 #include <memory>
@@ -67,7 +67,7 @@ typedef std::unordered_multimap< OUString, sal_Int16,
 
 
 class ConvDic :
-    public ::cppu::WeakImplHelper4
+    public ::cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XConversionDictionary,
         ::com::sun::star::linguistic2::XConversionPropertyType,
diff --git a/linguistic/source/convdiclist.cxx b/linguistic/source/convdiclist.cxx
index 380703b..b89ca49 100644
--- a/linguistic/source/convdiclist.cxx
+++ b/linguistic/source/convdiclist.cxx
@@ -29,6 +29,7 @@
 #include <com/sun/star/uno/Reference.h>
 #include <com/sun/star/util/XFlushable.hpp>
 #include <cppuhelper/factory.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <comphelper/processfactory.hxx>
 #include <cppuhelper/supportsservice.hxx>
 #include <rtl/instance.hxx>
@@ -82,7 +83,7 @@ OUString GetConvDicMainURL( const OUString &rDicName, const OUString &rDirectory
 }
 
 class ConvDicNameContainer :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::container::XNameContainer
     >,
diff --git a/linguistic/source/convdiclist.hxx b/linguistic/source/convdiclist.hxx
index f9e4cf3..8945e85 100644
--- a/linguistic/source/convdiclist.hxx
+++ b/linguistic/source/convdiclist.hxx
@@ -23,7 +23,7 @@
 #include <com/sun/star/linguistic2/XConversionDictionaryList.hpp>
 #include <com/sun/star/lang/XComponent.hpp>
 #include <com/sun/star/lang/XServiceInfo.hpp>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 
 #include "linguistic/misc.hxx"
@@ -34,7 +34,7 @@ class ConvDicNameContainer;
 
 
 class ConvDicList :
-    public cppu::WeakImplHelper3
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XConversionDictionaryList,
         ::com::sun::star::lang::XComponent,
diff --git a/linguistic/source/convdicxml.hxx b/linguistic/source/convdicxml.hxx
index 3828130..c5ce97a 100644
--- a/linguistic/source/convdicxml.hxx
+++ b/linguistic/source/convdicxml.hxx
@@ -28,7 +28,6 @@
 #include <comphelper/processfactory.hxx>
 #include <xmloff/xmlexp.hxx>
 #include <xmloff/xmlimp.hxx>
-#include <cppuhelper/implbase3.hxx>
 #include <cppuhelper/interfacecontainer.h>
 #include <rtl/ustring.hxx>
 #include "linguistic/misc.hxx"
diff --git a/linguistic/source/dicimp.hxx b/linguistic/source/dicimp.hxx
index 9a02ab3..c871cee 100644
--- a/linguistic/source/dicimp.hxx
+++ b/linguistic/source/dicimp.hxx
@@ -24,8 +24,7 @@
 #include <com/sun/star/frame/XStorable.hpp>
 #include <com/sun/star/lang/XServiceInfo.hpp>
 
-#include <cppuhelper/implbase2.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 #include <tools/stream.hxx>
 
@@ -37,7 +36,7 @@
 sal_Int16 ReadDicVersion( SvStreamPtr &rpStream, sal_uInt16 &nLng, bool &bNeg );
 
 class DictionaryNeo :
-    public ::cppu::WeakImplHelper2
+    public ::cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XDictionary,
         ::com::sun::star::frame::XStorable
@@ -179,7 +178,7 @@ public:
 
 
 class DicEntry :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XDictionaryEntry
     >
diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx
index 38bbf39..d5d2228 100644
--- a/linguistic/source/dlistimp.cxx
+++ b/linguistic/source/dlistimp.cxx
@@ -60,7 +60,7 @@ static void AddUserData( const uno::Reference< XDictionary > &rDic );
 
 
 class DicEvtListenerHelper :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         XDictionaryEventListener
     >
diff --git a/linguistic/source/dlistimp.hxx b/linguistic/source/dlistimp.hxx
index dd4869d..78a7729 100644
--- a/linguistic/source/dlistimp.hxx
+++ b/linguistic/source/dlistimp.hxx
@@ -24,8 +24,7 @@
 #include <com/sun/star/lang/XComponent.hpp>
 #include <com/sun/star/lang/XServiceInfo.hpp>
 
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 
 #include <vector>
@@ -37,7 +36,7 @@ class DicEvtListenerHelper;
 
 
 class DicList :
-    public cppu::WeakImplHelper3
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XSearchableDictionaryList,
         ::com::sun::star::lang::XComponent,
diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx
index b15acb1..365bf04 100644
--- a/linguistic/source/gciterator.cxx
+++ b/linguistic/source/gciterator.cxx
@@ -48,7 +48,6 @@
 #include <sal/config.h>
 #include <osl/conditn.hxx>
 #include <osl/thread.hxx>
-#include <cppuhelper/implbase4.hxx>
 #include <cppuhelper/implementationentry.hxx>
 #include <cppuhelper/interfacecontainer.h>
 #include <cppuhelper/factory.hxx>
diff --git a/linguistic/source/gciterator.hxx b/linguistic/source/gciterator.hxx
index 824b04af..75d9f83 100644
--- a/linguistic/source/gciterator.hxx
+++ b/linguistic/source/gciterator.hxx
@@ -30,7 +30,7 @@
 #include <com/sun/star/uno/XComponentContext.hpp>
 #include <com/sun/star/util/XChangesBatch.hpp>
 
-#include <cppuhelper/implbase5.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/weakref.hxx>
 #include <osl/mutex.hxx>
 #include <osl/conditn.hxx>
@@ -73,7 +73,7 @@ struct FPEntry
 
 
 class GrammarCheckingIterator:
-    public cppu::WeakImplHelper5
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XProofreadingIterator,
         ::com::sun::star::linguistic2::XLinguServiceEventListener,
diff --git a/linguistic/source/hhconvdic.hxx b/linguistic/source/hhconvdic.hxx
index 9de3b61..b4ca5b9 100644
--- a/linguistic/source/hhconvdic.hxx
+++ b/linguistic/source/hhconvdic.hxx
@@ -23,7 +23,6 @@
 #include <com/sun/star/linguistic2/XConversionDictionary.hpp>
 #include <com/sun/star/util/XFlushable.hpp>
 #include <com/sun/star/lang/XServiceInfo.hpp>
-#include <cppuhelper/implbase3.hxx>
 #include <cppuhelper/interfacecontainer.h>
 
 #include "linguistic/misc.hxx"
diff --git a/linguistic/source/hyphdsp.hxx b/linguistic/source/hyphdsp.hxx
index abb3ed7..f887dab 100644
--- a/linguistic/source/hyphdsp.hxx
+++ b/linguistic/source/hyphdsp.hxx
@@ -30,7 +30,7 @@
 #include <com/sun/star/linguistic2/XSearchableDictionaryList.hpp>
 #include <com/sun/star/linguistic2/XLinguServiceEventBroadcaster.hpp>
 
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
 
 #include <boost/shared_ptr.hpp>
 #include <map>
@@ -43,7 +43,7 @@ class LngSvcMgr;
 
 
 class HyphenatorDispatcher :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XHyphenator
     >,
diff --git a/linguistic/source/lngopt.cxx b/linguistic/source/lngopt.cxx
index d07b4da..f9951f8 100644
--- a/linguistic/source/lngopt.cxx
+++ b/linguistic/source/lngopt.cxx
@@ -26,8 +26,6 @@
 #include <tools/debug.hxx>
 #include <unotools/lingucfg.hxx>
 
-#include <cppuhelper/implbase1.hxx>
-
 #include <cppuhelper/factory.hxx>
 #include <cppuhelper/supportsservice.hxx>
 #include <com/sun/star/container/XNameAccess.hpp>
diff --git a/linguistic/source/lngopt.hxx b/linguistic/source/lngopt.hxx
index 47c95d2..6bedca0 100644
--- a/linguistic/source/lngopt.hxx
+++ b/linguistic/source/lngopt.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_LINGUISTIC_SOURCE_LNGOPT_HXX
 #define INCLUDED_LINGUISTIC_SOURCE_LNGOPT_HXX
 
-#include <cppuhelper/implbase5.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.hxx>
 #include <com/sun/star/beans/XPropertySet.hpp>
 #include <com/sun/star/beans/XFastPropertySet.hpp>
@@ -67,7 +67,7 @@ typedef cppu::OMultiTypeInterfaceContainerHelperVar<sal_Int32>
     OPropertyListenerContainerHelper;
 
 class LinguProps :
-    public cppu::WeakImplHelper5
+    public cppu::WeakImplHelper
     <
         com::sun::star::linguistic2::XLinguProperties,
         com::sun::star::beans::XFastPropertySet,
diff --git a/linguistic/source/lngsvcmgr.cxx b/linguistic/source/lngsvcmgr.cxx
index 81fc410..f1f8121 100644
--- a/linguistic/source/lngsvcmgr.cxx
+++ b/linguistic/source/lngsvcmgr.cxx
@@ -33,6 +33,7 @@
 #include <i18nlangtag/lang.h>
 #include <i18nlangtag/languagetag.hxx>
 #include <cppuhelper/factory.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/supportsservice.hxx>
 #include <boost/checked_delete.hpp>
 #include <boost/noncopyable.hpp>
@@ -173,7 +174,7 @@ bool SvcInfo::HasLanguage( sal_Int16 nLanguage ) const
 }
 
 class LngSvcMgrListenerHelper :
-    public cppu::WeakImplHelper2
+    public cppu::WeakImplHelper
     <
         linguistic2::XLinguServiceEventListener,
         linguistic2::XDictionaryListEventListener
diff --git a/linguistic/source/lngsvcmgr.hxx b/linguistic/source/lngsvcmgr.hxx
index c135ad6..1d43f16 100644
--- a/linguistic/source/lngsvcmgr.hxx
+++ b/linguistic/source/lngsvcmgr.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_LINGUISTIC_SOURCE_LNGSVCMGR_HXX
 #define INCLUDED_LINGUISTIC_SOURCE_LNGSVCMGR_HXX
 
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 
 
@@ -55,7 +55,7 @@ namespace com { namespace sun { namespace star { namespace linguistic2 {
 
 
 class LngSvcMgr :
-    public cppu::WeakImplHelper3
+    public cppu::WeakImplHelper
     <
         com::sun::star::linguistic2::XLinguServiceManager2,
         com::sun::star::lang::XServiceInfo,
diff --git a/linguistic/source/spelldsp.hxx b/linguistic/source/spelldsp.hxx
index 18ddf27..c50ec33 100644
--- a/linguistic/source/spelldsp.hxx
+++ b/linguistic/source/spelldsp.hxx
@@ -24,9 +24,7 @@
 #include "linguistic/misc.hxx"
 #include "iprcache.hxx"
 
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase2.hxx>
-#include <cppuhelper/implbase7.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <com/sun/star/lang/XComponent.hpp>
 #include <com/sun/star/lang/XInitialization.hpp>
 #include <com/sun/star/lang/XServiceDisplayName.hpp>
@@ -46,7 +44,7 @@ class LngSvcMgr;
 
 
 class SpellCheckerDispatcher :
-    public cppu::WeakImplHelper2
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XSpellChecker1,
         ::com::sun::star::linguistic2::XSpellChecker
diff --git a/linguistic/source/thesdsp.hxx b/linguistic/source/thesdsp.hxx
index 40832d8..bd15233 100644
--- a/linguistic/source/thesdsp.hxx
+++ b/linguistic/source/thesdsp.hxx
@@ -32,8 +32,7 @@
 #include <com/sun/star/lang/XServiceInfo.hpp>
 #include <com/sun/star/linguistic2/XThesaurus.hpp>
 
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase5.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 
 #include <osl/mutex.hxx>
@@ -46,7 +45,7 @@
 
 
 class ThesaurusDispatcher :
-    public cppu::WeakImplHelper1
+    public cppu::WeakImplHelper
     <
         ::com::sun::star::linguistic2::XThesaurus
     >,
diff --git a/linguistic/workben/sprophelp.hxx b/linguistic/workben/sprophelp.hxx
index 939ea6b..d2dc229 100644
--- a/linguistic/workben/sprophelp.hxx
+++ b/linguistic/workben/sprophelp.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_LINGUISTIC_WORKBEN_SPROPHELP_HXX
 #define INCLUDED_LINGUISTIC_WORKBEN_SPROPHELP_HXX
 
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <cppuhelper/interfacecontainer.h>
 #include <com/sun/star/beans/XPropertyChangeListener.hpp>
 #include <com/sun/star/beans/PropertyValues.hpp>
@@ -46,7 +46,7 @@ using namespace ::com::sun::star::linguistic2;
 // Only propertyChange needs to be implemented.
 
 class PropertyChgHelper :
-    public cppu::WeakImplHelper2
+    public cppu::WeakImplHelper
     <
         XPropertyChangeListener,
         XLinguServiceEventBroadcaster
diff --git a/linguistic/workben/sspellimp.hxx b/linguistic/workben/sspellimp.hxx
index 58b0afe..cb9232a 100644
--- a/linguistic/workben/sspellimp.hxx
+++ b/linguistic/workben/sspellimp.hxx
@@ -20,8 +20,7 @@
 #ifndef INCLUDED_LINGUISTIC_WORKBEN_SSPELLIMP_HXX
 #define INCLUDED_LINGUISTIC_WORKBEN_SSPELLIMP_HXX
 
-#include <cppuhelper/implbase1.hxx>
-#include <cppuhelper/implbase6.hxx>
+#include <cppuhelper/implbase.hxx>
 #include <com/sun/star/lang/XComponent.hpp>
 #include <com/sun/star/lang/XInitialization.hpp>
 #include <com/sun/star/lang/XServiceDisplayName.hpp>
@@ -43,7 +42,7 @@ using namespace ::com::sun::star::linguistic2;
 
 
 class SpellChecker :
-    public cppu::WeakImplHelper6
+    public cppu::WeakImplHelper
     <
         XSpellChecker,
         XLinguServiceEventBroadcaster,


More information about the Libreoffice-commits mailing list