summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-11 18:51:03 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-12 11:09:26 +0200
commit8c639732ae286e84ad9aa7ba6e92c9d12a8c26d9 (patch)
tree2c5f9c8ad5b58ab2f4107462f9d8c4be79e37f86 /sc/source
parent2db00e5d55e8a2ba67a1b57640cb8ad7573f1ce1 (diff)
Fix typos
Change-Id: I331ac595c68601cee49fa726e5a074d4a9341d12 Reviewed-on: https://gerrit.libreoffice.org/77297 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/inc/workbookhelper.hxx2
-rw-r--r--sc/source/filter/inc/xeescher.hxx2
-rw-r--r--sc/source/filter/inc/xehelper.hxx2
-rw-r--r--sc/source/filter/inc/xestream.hxx2
-rw-r--r--sc/source/filter/inc/xilink.hxx4
-rw-r--r--sc/source/filter/oox/formulaparser.cxx2
6 files changed, 7 insertions, 7 deletions
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 );
}