diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-24 12:52:02 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-25 12:25:17 +0000 |
commit | 25e0872da600c65a08c73c335f0e1ef21b2f00f5 (patch) | |
tree | 17bb46a39c838c5932ca7ca6b3d4fa3c19488583 /svtools/source | |
parent | 7f56e58148602f75b7b5ccccf1860dc65c4620d0 (diff) |
Fix typos
Change-Id: I4eda687db6ad8d41e6a28430c76b288510da605d
Reviewed-on: https://gerrit.libreoffice.org/35645
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/control/ruler.cxx | 2 | ||||
-rw-r--r-- | svtools/source/misc/templatefoldercache.cxx | 2 | ||||
-rw-r--r-- | svtools/source/table/defaultinputhandler.cxx | 2 | ||||
-rw-r--r-- | svtools/source/table/tablecontrol_impl.cxx | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx index b8a027a8949e..81e0bf46863f 100644 --- a/svtools/source/control/ruler.cxx +++ b/svtools/source/control/ruler.cxx @@ -2265,7 +2265,7 @@ void Ruler::Activate() { mbActive = true; - // update positionlies - draw is delayed + // update positionlines - draw is delayed mnUpdateFlags |= RULER_UPDATE_LINES; Invalidate(InvalidateFlags::NoErase); } diff --git a/svtools/source/misc/templatefoldercache.cxx b/svtools/source/misc/templatefoldercache.cxx index c8df77d51058..c2a1dee516ad 100644 --- a/svtools/source/misc/templatefoldercache.cxx +++ b/svtools/source/misc/templatefoldercache.cxx @@ -673,7 +673,7 @@ namespace svt // their number sal_Int32 nRootDirectories = 0; m_pCacheStream->ReadInt32( nRootDirectories ); - // init empty TemplateContens with the URLs + // init empty TemplateContents with the URLs m_aPreviousState.reserve( nRootDirectories ); while ( nRootDirectories-- ) { diff --git a/svtools/source/table/defaultinputhandler.cxx b/svtools/source/table/defaultinputhandler.cxx index 5a81bedcec80..a50ca4685da6 100644 --- a/svtools/source/table/defaultinputhandler.cxx +++ b/svtools/source/table/defaultinputhandler.cxx @@ -104,7 +104,7 @@ namespace svt { namespace table break; case ContinueFunction: case DeactivateFunction: - OSL_ENSURE( false, "lcl_delegateMouseEvent: unexpected: inactivate handler cannot be continued or deactivated!" ); + OSL_ENSURE( false, "lcl_delegateMouseEvent: unexpected: inactive handler cannot be continued or deactivated!" ); break; case SkipFunction: handled = false; diff --git a/svtools/source/table/tablecontrol_impl.cxx b/svtools/source/table/tablecontrol_impl.cxx index 16e711e4b39b..fef8a6e09066 100644 --- a/svtools/source/table/tablecontrol_impl.cxx +++ b/svtools/source/table/tablecontrol_impl.cxx @@ -751,7 +751,7 @@ namespace svt { namespace table OSL_ENSURE( flexibility >= 0, "TableControl_Impl::impl_ni_calculateColumnWidths: a column's flexibility should be non-negative." ); if ( ( flexibility < 0 ) // normalization || ( !pColumn->isResizable() ) // column not resizable => no auto-resize - || ( col <= i_assumeInflexibleColumnsUpToIncluding ) // column shall be treated as inflexible => respec this + || ( col <= i_assumeInflexibleColumnsUpToIncluding ) // column shall be treated as inflexible => respect this ) flexibility = 0; @@ -1262,7 +1262,7 @@ namespace svt { namespace table Rectangle const aRect = aRowIterator.getRect().GetIntersection(aAllDataCellsArea); - // give the redenderer a chance to prepare the row + // give the renderer a chance to prepare the row pRenderer->PrepareRow(aRowIterator.getRow(), isControlFocused, isSelectedRow, rRenderContext, aRect, rStyle); // paint the row header |