summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-02-14 18:10:51 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-02-14 18:10:51 +0100
commit2fd29c83ce490526894fc4e1dc5f2ff4969861f4 (patch)
treefbdf7c4cbfffe1ba7efddeebc91cf1c2288c27a1 /svx
parent2c9636891ebabf57a2bc2de188325a1abbbdcd79 (diff)
Typo: avalaible->available
Change-Id: I8976671fa0c1c090c0af1030e3ef8df3f3701b60
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/tablemodel.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/tablemodel.cxx b/svx/source/table/tablemodel.cxx
index 71935c397f02..bd50f69e72b2 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;