[Libreoffice-commits] core.git: svx/source
Julien Nabet
serval2412 at yahoo.fr
Sat Feb 14 09:11:29 PST 2015
svx/source/table/tablemodel.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 2fd29c83ce490526894fc4e1dc5f2ff4969861f4
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Feb 14 18:10:51 2015 +0100
Typo: avalaible->available
Change-Id: I8976671fa0c1c090c0af1030e3ef8df3f3701b60
diff --git a/svx/source/table/tablemodel.cxx b/svx/source/table/tablemodel.cxx
index 71935c3..bd50f69 100644
--- a/svx/source/table/tablemodel.cxx
+++ b/svx/source/table/tablemodel.cxx
@@ -738,7 +738,7 @@ void TableModel::removeColumns( sal_Int32 nIndex, sal_Int32 nCount )
{
TableModelNotifyGuard aGuard( this );
- // clip removed columns to columns actually avalaible
+ // clip removed columns to columns actually available
if( (nIndex + nCount) > nColCount )
nCount = nColCount - nIndex;
@@ -914,7 +914,7 @@ void TableModel::removeRows( sal_Int32 nIndex, sal_Int32 nCount )
{
TableModelNotifyGuard aGuard( this );
- // clip removed rows to rows actually avalaible
+ // clip removed rows to rows actually available
if( (nIndex + nCount) > nRowCount )
nCount = nRowCount - nIndex;
More information about the Libreoffice-commits
mailing list