[Libreoffice-commits] core.git: javaunohelper/test lotuswordpro/inc lotuswordpro/source ridljar/com sd/source winaccessibility/inc

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 1 08:02:42 UTC 2020


 javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java |    4 ++--
 lotuswordpro/inc/lwpfoundry.hxx                                           |    2 +-
 lotuswordpro/source/filter/lwpcharacterstyle.cxx                          |    2 +-
 lotuswordpro/source/filter/lwpfrib.cxx                                    |    6 +++---
 lotuswordpro/source/filter/lwpparastyle.cxx                               |    2 +-
 lotuswordpro/source/filter/lwpsilverbullet.cxx                            |    2 +-
 ridljar/com/sun/star/comp/loader/JavaLoader.java                          |    2 +-
 sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx           |    2 +-
 winaccessibility/inc/AccObjectManagerAgent.hxx                            |    2 +-
 9 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 262ab496955582341e1f383c6eff9a0bb37dd9d7
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Aug 31 16:22:12 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Tue Sep 1 10:02:05 2020 +0200

    Fix typo in code
    
    It passed "make check" on Linux
    
    Change-Id: I4733e6609ee99bef49c2771c83b450ee89d955b5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101804
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
index b9c67e68be74..03daa113aaad 100644
--- a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
+++ b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
@@ -85,12 +85,12 @@ public class SharedLibraryLoader_Test {
         if ( sharedLibraryLoader == null && ! test_instantiateSharedLibraryLoader() )
             return false;
 
-        System.err.println("- get the native ServiceManger factory");
+        System.err.println("- get the native ServiceManager factory");
         XSingleServiceFactory aSMgrFac =
             UnoRuntime.queryInterface( XSingleServiceFactory.class,
                         sharedLibraryLoader.activate(NATIVE_SERVICE_MANAGER_IMP_NAME, null, NATIVE_SERVICE_MANAGER_LIB_NAME, null));
 
-        System.err.println("- instantiate the native ServiceManger");
+        System.err.println("- instantiate the native ServiceManager");
         nativeServiceManager = UnoRuntime.queryInterface( XMultiServiceFactory.class, aSMgrFac.createInstance() );
 
         System.out.print("Test - ");
diff --git a/lotuswordpro/inc/lwpfoundry.hxx b/lotuswordpro/inc/lwpfoundry.hxx
index 36919dd9da4e..fc9989107639 100644
--- a/lotuswordpro/inc/lwpfoundry.hxx
+++ b/lotuswordpro/inc/lwpfoundry.hxx
@@ -248,7 +248,7 @@ private:
 public:
     LwpContentManager& GetContentManager() { return m_ContentMgr; }
     LwpObjectID& GetGraphicListHead() { return m_ContentMgr.GetGraphicListHead(); }
-    LwpFontManager& GetFontManger() { return m_FontMgr;}
+    LwpFontManager& GetFontManager() { return m_FontMgr;}
     LwpObjectID& GetTextStyleHead()  { return m_TextStyle;}
     LwpObjectID& GetLayout() {return m_Layout;}
     LwpObjectID& GetBulletManagerID() { return m_BulMgr.GetHeadID();}
diff --git a/lotuswordpro/source/filter/lwpcharacterstyle.cxx b/lotuswordpro/source/filter/lwpcharacterstyle.cxx
index 07034de5381b..eb94bb0c1840 100644
--- a/lotuswordpro/source/filter/lwpcharacterstyle.cxx
+++ b/lotuswordpro/source/filter/lwpcharacterstyle.cxx
@@ -151,7 +151,7 @@ void LwpTextStyle::RegisterStyle()
     pStyle->SetStyleName(styleName);
 
     //Create font
-    LwpFontManager& rFontMgr = m_pFoundry->GetFontManger();
+    LwpFontManager& rFontMgr = m_pFoundry->GetFontManager();
     rtl::Reference<XFFont> pFont = rFontMgr.CreateFont(m_nFinalFontID);
     pStyle->SetFont(pFont);
 
diff --git a/lotuswordpro/source/filter/lwpfrib.cxx b/lotuswordpro/source/filter/lwpfrib.cxx
index bc9450fd17bc..95875aaedaa1 100644
--- a/lotuswordpro/source/filter/lwpfrib.cxx
+++ b/lotuswordpro/source/filter/lwpfrib.cxx
@@ -259,7 +259,7 @@ void LwpFrib::RegisterStyle(LwpFoundry* pFoundry)
             *pNewStyle = *pNamedStyle;
 
             pNewStyle->SetStyleName("");
-            pFont = pFoundry->GetFontManger().CreateOverrideFont(pCharStyle->GetFinalFontID(),m_pModifiers->FontID);
+            pFont = pFoundry->GetFontManager().CreateOverrideFont(pCharStyle->GetFinalFontID(),m_pModifiers->FontID);
             pNewStyle->SetFont(pFont);
             IXFStyleRet aNewStyle = pXFStyleManager->AddStyle(std::move(pNewStyle));
             m_StyleName = aNewStyle.m_pStyle->GetStyleName();
@@ -275,7 +275,7 @@ void LwpFrib::RegisterStyle(LwpFoundry* pFoundry)
         if (m_pModifiers->FontID && pFoundry)
         {
             std::unique_ptr<XFTextStyle> pNewStyle(new XFTextStyle());
-            pFont = pFoundry->GetFontManger().CreateFont(m_pModifiers->FontID);
+            pFont = pFoundry->GetFontManager().CreateFont(m_pModifiers->FontID);
             pNewStyle->SetFont(pFont);
             IXFStyleRet aNewStyle = pXFStyleManager->AddStyle(std::move(pNewStyle));
             m_StyleName = aNewStyle.m_pStyle->GetStyleName();
@@ -421,7 +421,7 @@ rtl::Reference<XFFont> LwpFrib::GetFont()
     {
         LwpFoundry* pFoundry = m_pPara->GetFoundry();
         if (pFoundry)
-            pFont = pFoundry->GetFontManger().CreateFont(m_pModifiers->FontID);
+            pFont = pFoundry->GetFontManager().CreateFont(m_pModifiers->FontID);
     }
     else
     {
diff --git a/lotuswordpro/source/filter/lwpparastyle.cxx b/lotuswordpro/source/filter/lwpparastyle.cxx
index 542f124beefd..fdec20bc31a3 100644
--- a/lotuswordpro/source/filter/lwpparastyle.cxx
+++ b/lotuswordpro/source/filter/lwpparastyle.cxx
@@ -653,7 +653,7 @@ void LwpParaStyle::RegisterStyle()
     xStyle->SetStyleName(styleName);
 
     //Create font
-    LwpFontManager& rFontMgr = m_pFoundry->GetFontManger();
+    LwpFontManager& rFontMgr = m_pFoundry->GetFontManager();
     rtl::Reference<XFFont> pFont = rFontMgr.CreateFont(m_nFinalFontID);
     xStyle->SetFont(pFont);
 
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx
index d13371158c2c..5c6a5ca45030 100644
--- a/lotuswordpro/source/filter/lwpsilverbullet.cxx
+++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx
@@ -195,7 +195,7 @@ OUString LwpSilverBullet::GetBulletFontName()
         return OUString();
     }
 
-    LwpFontManager& rFontMgr = m_pFoundry->GetFontManger();
+    LwpFontManager& rFontMgr = m_pFoundry->GetFontManager();
 
     sal_uInt32 nBulletFontID = m_xBulletPara->GetBulletFontID();
     sal_uInt16 nFinalFont = static_cast<sal_uInt16>((nBulletFontID >> 16) & 0xFFFF);
diff --git a/ridljar/com/sun/star/comp/loader/JavaLoader.java b/ridljar/com/sun/star/comp/loader/JavaLoader.java
index 8bc0ae228593..42dee0da5ce1 100644
--- a/ridljar/com/sun/star/comp/loader/JavaLoader.java
+++ b/ridljar/com/sun/star/comp/loader/JavaLoader.java
@@ -54,7 +54,7 @@ import com.sun.star.uno.AnyConverter;
  * <p>Therefore the <code>JavaLoader</code> activates external UNO components
  * which are implemented in Java.</p>
  *
- * <p>The loader is used by the <code>ServiceManger</code>.</p>
+ * <p>The loader is used by the <code>ServiceManager</code>.</p>
  *
  * @see         com.sun.star.loader.XImplementationLoader
  * @see         com.sun.star.loader.Java
diff --git a/sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx b/sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx
index 868dcdaea06e..8857a59f65fc 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx
@@ -44,7 +44,7 @@ class SelectionObserver;
 class SelectionManager
 {
 public:
-    /** Create a new SelectionManger for the given slide sorter.
+    /** Create a new SelectionManager for the given slide sorter.
     */
     SelectionManager (SlideSorter& rSlideSorter);
 
diff --git a/winaccessibility/inc/AccObjectManagerAgent.hxx b/winaccessibility/inc/AccObjectManagerAgent.hxx
index 065210512067..9864b31f5c0c 100644
--- a/winaccessibility/inc/AccObjectManagerAgent.hxx
+++ b/winaccessibility/inc/AccObjectManagerAgent.hxx
@@ -29,7 +29,7 @@ struct IAccessible;
 class AccObjectWinManager;
 
 /****************************************************************
-AccObjectMangerAgent is used for managing AccObjects, which encapsulates
+AccObjectManagerAgent is used for managing AccObjects, which encapsulates
 platform differences,and call AccObjectWinManager for Windows platform. To do for
 Linux platform
 *****************************************************************/


More information about the Libreoffice-commits mailing list