Kaydet (Commit) 2fd29c83 authored tarafından Julien Nabet's avatar Julien Nabet

Typo: avalaible->available

Change-Id: I8976671fa0c1c090c0af1030e3ef8df3f3701b60
üst 2c963689
...@@ -738,7 +738,7 @@ void TableModel::removeColumns( sal_Int32 nIndex, sal_Int32 nCount ) ...@@ -738,7 +738,7 @@ void TableModel::removeColumns( sal_Int32 nIndex, sal_Int32 nCount )
{ {
TableModelNotifyGuard aGuard( this ); TableModelNotifyGuard aGuard( this );
// clip removed columns to columns actually avalaible // clip removed columns to columns actually available
if( (nIndex + nCount) > nColCount ) if( (nIndex + nCount) > nColCount )
nCount = nColCount - nIndex; nCount = nColCount - nIndex;
...@@ -914,7 +914,7 @@ void TableModel::removeRows( sal_Int32 nIndex, sal_Int32 nCount ) ...@@ -914,7 +914,7 @@ void TableModel::removeRows( sal_Int32 nIndex, sal_Int32 nCount )
{ {
TableModelNotifyGuard aGuard( this ); TableModelNotifyGuard aGuard( this );
// clip removed rows to rows actually avalaible // clip removed rows to rows actually available
if( (nIndex + nCount) > nRowCount ) if( (nIndex + nCount) > nRowCount )
nCount = nRowCount - nIndex; nCount = nRowCount - nIndex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment