[Libreoffice-commits] core.git: cppu/source framework/source include/osl sd/source sd/uiconfig vcl/quartz

Andrea Gelmini andrea.gelmini at gelma.net
Tue May 22 16:40:03 UTC 2018


 cppu/source/typelib/typelib.cxx                        |    6 +++---
 framework/source/fwe/classes/addonsoptions.cxx         |    2 +-
 include/osl/file.h                                     |    2 +-
 include/osl/file.hxx                                   |    2 +-
 sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx |    2 +-
 sd/source/ui/slidesorter/inc/cache/SlsPageCache.hxx    |    2 +-
 sd/uiconfig/simpress/ui/notebookbar.ui                 |    2 +-
 vcl/quartz/salgdicommon.cxx                            |    2 +-
 8 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 6924586821805b7a338c8e746141f51e3ba29560
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Tue May 22 15:35:19 2018 +0200

    Fix typos
    
    Change-Id: Idbe136fbfd222e8baad588dc36a2f9b7ce6996ec
    Reviewed-on: https://gerrit.libreoffice.org/54590
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index 8d842cc40a4f..ac3b23567897 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -497,7 +497,7 @@ bool complete(typelib_TypeDescription ** ppTypeDescr, bool initTables) {
             ::typelib_typedescription_register( &pTD ); // replaces incomplete one
             OSL_ASSERT( pTD == *ppTypeDescr ); // has to merge into existing one
 
-            // insert into the chache
+            // insert into the cache
             MutexGuard aGuard( rInit.getMutex() );
             if( !rInit.pCache )
                 rInit.pCache.reset( new TypeDescriptionList_Impl );
@@ -1994,7 +1994,7 @@ extern "C" void SAL_CALL typelib_typedescription_getByName(
                 // on demand is activated.
                 typelib_typedescription_register( ppRet );
 
-                // insert into the chache
+                // insert into the cache
                 MutexGuard aGuard( rInit.getMutex() );
                 if( !rInit.pCache )
                     rInit.pCache.reset( new TypeDescriptionList_Impl );
@@ -2052,7 +2052,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_new(
                 // on demand is activated.
                 typelib_typedescription_register( &pRet );
 
-                // insert into the chache
+                // insert into the cache
                 MutexGuard aGuard( rInit.getMutex() );
                 if( !rInit.pCache )
                     rInit.pCache.reset( new TypeDescriptionList_Impl );
diff --git a/framework/source/fwe/classes/addonsoptions.cxx b/framework/source/fwe/classes/addonsoptions.cxx
index 9faacbc73d6c..0ed4c5b45833 100644
--- a/framework/source/fwe/classes/addonsoptions.cxx
+++ b/framework/source/fwe/classes/addonsoptions.cxx
@@ -487,7 +487,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, bool bBig, bool
     Image aImage;
 
     SAL_INFO("fwk", "Expensive: Addons GetImageFromURL " << aURL <<
-             " big " << (bBig?"big":"litte") <<
+             " big " << (bBig?"big":"little") <<
              " scale " << (bNoScale ? "noscale" : "scale"));
 
     ImageManager::iterator pIter = m_aImageManager.find(aURL);
diff --git a/include/osl/file.h b/include/osl/file.h
index 7d6d22173420..038631a86618 100644
--- a/include/osl/file.h
+++ b/include/osl/file.h
@@ -635,7 +635,7 @@ typedef void *oslFileHandle;
 
 /** Open a regular file.
 
-    Open a file. Only regular files can be openend.
+    Open a file. Only regular files can be opened.
 
     @param[in] pustrFileURL
     The full qualified URL of the file to open.
diff --git a/include/osl/file.hxx b/include/osl/file.hxx
index 76b2a1bb110f..6d1a755ac422 100644
--- a/include/osl/file.hxx
+++ b/include/osl/file.hxx
@@ -930,7 +930,7 @@ public:
 
     /** Open a regular file.
 
-        Open a file. Only regular files can be openend.
+        Open a file. Only regular files can be opened.
 
         @param[in] uFlags
         Specifies the open mode.
diff --git a/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx b/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx
index b0794a0496d0..7ebabdf79bc1 100644
--- a/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx
+++ b/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx
@@ -34,7 +34,7 @@ class QueueProcessor;
 class GenericPageCache
 {
 public:
-    /** The page chache is created with a reference to the SlideSorter and
+    /** The page cache is created with a reference to the SlideSorter and
         thus has access to both view and model.  This allows the cache to
         fill itself with requests for all pages or just the visible ones.
         @param rPreviewSize
diff --git a/sd/source/ui/slidesorter/inc/cache/SlsPageCache.hxx b/sd/source/ui/slidesorter/inc/cache/SlsPageCache.hxx
index ecf4c0da8491..fffcefb2a4f2 100644
--- a/sd/source/ui/slidesorter/inc/cache/SlsPageCache.hxx
+++ b/sd/source/ui/slidesorter/inc/cache/SlsPageCache.hxx
@@ -65,7 +65,7 @@ class GenericPageCache;
 class PageCache
 {
 public:
-    /** The page chache is created with a reference to the slide sorter so
+    /** The page cache is created with a reference to the slide sorter so
         that it has access to both the view and the model and so can fill
         itself with requests for all or just the visible pages.
 
diff --git a/sd/uiconfig/simpress/ui/notebookbar.ui b/sd/uiconfig/simpress/ui/notebookbar.ui
index c708b594c00d..cee0e4868eb0 100644
--- a/sd/uiconfig/simpress/ui/notebookbar.ui
+++ b/sd/uiconfig/simpress/ui/notebookbar.ui
@@ -6922,7 +6922,7 @@
                             <property name="show_arrow">False</property>
                             <property name="icon_size">3</property>
                             <child>
-                              <object class="GtkToolButton" id="SlidShow-PresentationDialog">
+                              <object class="GtkToolButton" id="SlideShow-PresentationDialog">
                                 <property name="visible">True</property>
                                 <property name="can_focus">False</property>
                                 <property name="valign">center</property>
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index 11643e4f16cd..2c4fd043fe5e 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -2129,7 +2129,7 @@ void XorEmulation::SetTarget( int nWidth, int nHeight, int nTargetDepth,
     CGContextSetStrokeColorSpace( m_xMaskContext, aCGColorSpace );
     CGContextSetShouldAntialias( m_xMaskContext, false );
 
-    // improve the XorMask's XOR emulation a litte
+    // improve the XorMask's XOR emulation a little
     // NOTE: currently only enabled for monochrome contexts
     if( aCGColorSpace == GetSalData()->mxGraySpace )
     {


More information about the Libreoffice-commits mailing list