summaryrefslogtreecommitdiff
path: root/sc/inc/scmatrix.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r--sc/inc/scmatrix.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx
index aed97c697cf8..c3e8a956a6cb 100644
--- a/sc/inc/scmatrix.hxx
+++ b/sc/inc/scmatrix.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -178,17 +178,17 @@ public:
/** Clone the matrix. */
ScMatrix* Clone() const;
- /** Clone the matrix if mbCloneIfConst (immutable) is set, otherwise
+ /** Clone the matrix if mbCloneIfConst (immutable) is set, otherwise
return _this_ matrix, to be assigned to a ScMatrixRef. */
ScMatrix* CloneIfConst();
- /** Set the matrix to (im)mutable for CloneIfConst(), only the interpreter
+ /** Set the matrix to (im)mutable for CloneIfConst(), only the interpreter
should do this and know the consequences. */
inline void SetImmutable( bool bVal ) { mbCloneIfConst = bVal; }
- /**
+ /**
* Resize the matrix to specified new dimension. Note that this operation
- * clears all stored values.
+ * clears all stored values.
*/
void Resize( SCSIZE nC, SCSIZE nR);
@@ -345,7 +345,7 @@ public:
/// @return <TRUE/> if string or empty or empty path, in fact non-value.
BOOL IsString( SCSIZE nC, SCSIZE nR ) const
- {
+ {
ValidColRowReplicated( nC, nR );
return mnValType && IsNonValueType( mnValType[ nC * nRowCount + nR ]);
}