diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-03 17:11:39 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-03 17:14:16 +0100 |
commit | f5ca04caca1b6888cdc6b00b8465a53e6d5cf38d (patch) | |
tree | cda73db2df15d821e0587f345edd7587953bdbdf /svx/source/fmcomp | |
parent | ecf00403376d13355fcf6fb7cd36b3500f19fc69 (diff) |
Related to fdo#60724: correct spelling
Using the autocorrect list of LibreOffice
extras/source/autotext/lang/en-US/acor/DocumentList.xml
Change-Id: I8b93969bc0742c2e95b8b7db3c4c37691e8d3657
Script: http://pastebin.ca/2327716
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/gridcell.cxx | 2 | ||||
-rw-r--r-- | svx/source/fmcomp/gridctrl.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index 28564d922e3b..282cbde3e53a 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -1599,7 +1599,7 @@ void DbFormattedField::updateFromModel( Reference< XPropertySet > _rxModel ) OUString sText; Any aValue = _rxModel->getPropertyValue( FM_PROP_EFFECTIVE_VALUE ); if ( aValue >>= sText ) - { // our effective value is transfered as string + { // our effective value is transferred as string pFormattedWindow->SetTextFormatted( sText ); pFormattedWindow->SetSelection( Selection( SELECTION_MAX, SELECTION_MIN ) ); } diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index d6434e18e76f..46e3ac79b493 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -1303,7 +1303,7 @@ sal_uInt16 DbGridControl::SetOptions(sal_uInt16 nOpt) } else nNewMode &= ~BROWSER_HIDECURSOR; - // should not be neccessary if EnablePermanentCursor is used to change the cursor behaviour, but to be sure ... + // should not be necessary if EnablePermanentCursor is used to change the cursor behaviour, but to be sure ... if (nNewMode != m_nMode) { @@ -1608,7 +1608,7 @@ void DbGridControl::setDataSource(const Reference< XRowSet >& _xCursor, sal_uInt // there are rows so go to the selected current column if (nRecordCount) GoToRowColumnId(0, GetColumnId(nCurPos)); - // else stop the editing if neccessary + // else stop the editing if necessary else if (IsEditing()) DeactivateCell(); |