diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-02-14 18:10:51 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-02-14 18:10:51 +0100 |
commit | 2fd29c83ce490526894fc4e1dc5f2ff4969861f4 (patch) | |
tree | fbdf7c4cbfffe1ba7efddeebc91cf1c2288c27a1 /svx/source | |
parent | 2c9636891ebabf57a2bc2de188325a1abbbdcd79 (diff) |
Typo: avalaible->available
Change-Id: I8976671fa0c1c090c0af1030e3ef8df3f3701b60
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/table/tablemodel.cxx | 4 |
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; |