[Libreoffice-commits] core.git: sc/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Aug 12 09:10:31 UTC 2019


 sc/source/filter/inc/workbookhelper.hxx |    2 +-
 sc/source/filter/inc/xeescher.hxx       |    2 +-
 sc/source/filter/inc/xehelper.hxx       |    2 +-
 sc/source/filter/inc/xestream.hxx       |    2 +-
 sc/source/filter/inc/xilink.hxx         |    4 ++--
 sc/source/filter/oox/formulaparser.cxx  |    2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 8c639732ae286e84ad9aa7ba6e92c9d12a8c26d9
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Aug 11 18:51:03 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Aug 12 11:09:26 2019 +0200

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

diff --git a/sc/source/filter/inc/workbookhelper.hxx b/sc/source/filter/inc/workbookhelper.hxx
index 7a9dbbda3f36..10733994a232 100644
--- a/sc/source/filter/inc/workbookhelper.hxx
+++ b/sc/source/filter/inc/workbookhelper.hxx
@@ -87,7 +87,7 @@ class FormulaBuffer;
 class WorkbookGlobals;
 typedef std::shared_ptr< WorkbookGlobals > WorkbookGlobalsRef;
 
-/** Helper class to provice access to global workbook data.
+/** Helper class to provide access to global workbook data.
 
     All classes derived from this helper class will have access to a singleton
     object of type WorkbookGlobals containing global workbook settings,
diff --git a/sc/source/filter/inc/xeescher.hxx b/sc/source/filter/inc/xeescher.hxx
index 05491a3b2127..880545307751 100644
--- a/sc/source/filter/inc/xeescher.hxx
+++ b/sc/source/filter/inc/xeescher.hxx
@@ -244,7 +244,7 @@ private:
 
 //#else
 
-/** Represents an OBJ record for an TBX form control. */
+/** Represents an OBJ record for a TBX form control. */
 class XclExpTbxControlObj : public XclObj, public XclMacroHelper
 {
 public:
diff --git a/sc/source/filter/inc/xehelper.hxx b/sc/source/filter/inc/xehelper.hxx
index 9287fdf86da0..0740c4040046 100644
--- a/sc/source/filter/inc/xehelper.hxx
+++ b/sc/source/filter/inc/xehelper.hxx
@@ -311,7 +311,7 @@ public:
                             const SdrTextObj& rTextObj,
                             XclStrFlags nFlags = XclStrFlags::NONE );
 
-    /** Creates a new formatted string from a edit text string.
+    /** Creates a new formatted string from an edit text string.
         @param rEditObj  The edittext object.
         @param nFlags  Modifiers for string export.
         @return  The new string object. */
diff --git a/sc/source/filter/inc/xestream.hxx b/sc/source/filter/inc/xestream.hxx
index 2e4d34cee6fb..29733bb67a8e 100644
--- a/sc/source/filter/inc/xestream.hxx
+++ b/sc/source/filter/inc/xestream.hxx
@@ -58,7 +58,7 @@ typedef std::shared_ptr< XclExpBiff8Encrypter > XclExpEncrypterRef;
     If some data exceeds the record size limit, a CONTINUE record is started automatically
     and the new data will be written to this record.
 
-    If specific data pieces must not be splitted, use SetSliceSize(). For instance:
+    If specific data pieces must not be split, use SetSliceSize(). For instance:
     To write a sequence of 16-bit values, where 4 values form a unit and cannot be
     split, call SetSliceSize( 8 ) first (4*2 bytes == 8).
 
diff --git a/sc/source/filter/inc/xilink.hxx b/sc/source/filter/inc/xilink.hxx
index 2e188d0de9c1..a13c57ca4c73 100644
--- a/sc/source/filter/inc/xilink.hxx
+++ b/sc/source/filter/inc/xilink.hxx
@@ -54,8 +54,8 @@ Classes for import of different kinds of internal/external references.
 
     The second purpose is to store the creation order of all sheets inside the
     Excel workbook. The creation order list is contained in the TABID record
-    and needed to import the change log. Example: If the list contains 3;1;2
-    this means that the second sheet in the file was created first, than the
+    and needed to import the change log. Example: if the list contains 3;1;2
+    this means that the second sheet in the file was created first, then the
     third sheet in the file was created and finally the first sheet.
  */
 class XclImpTabInfo
diff --git a/sc/source/filter/oox/formulaparser.cxx b/sc/source/filter/oox/formulaparser.cxx
index 4300e9cb469d..f953fcced3a8 100644
--- a/sc/source/filter/oox/formulaparser.cxx
+++ b/sc/source/filter/oox/formulaparser.cxx
@@ -362,7 +362,7 @@ void FormulaFinalizer::appendEmptyParameter( const FunctionInfo& rFuncInfo, size
         default:;
     }
 
-    // if no token has been added, append a OPCODE_MISSING token
+    // if no token has been added, append an OPCODE_MISSING token
     if( nTokenArraySize == maTokens.size() )
         maTokens.append( OPCODE_MISSING );
 }


More information about the Libreoffice-commits mailing list