From 30fc8e2a48c0bf6c9944fe0ae2d75ea2f3c2b0c9 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Thu, 10 Apr 2014 10:55:55 +0200 Subject: [PATCH] typo: foreward -> forward --- sd/source/ui/func/smarttag.cxx | 6 +++--- vcl/source/control/ilstbox.cxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sd/source/ui/func/smarttag.cxx b/sd/source/ui/func/smarttag.cxx index e58cdc5b65ec..e0612b0ec588 100644 --- a/sd/source/ui/func/smarttag.cxx +++ b/sd/source/ui/func/smarttag.cxx @@ -246,7 +246,7 @@ bool SmartTagSet::MouseButtonDown( const MouseEvent& rMEvt ) return false; } - // if a smart tag handle is hit, foreward event to its smart tag + // if a smart tag handle is hit, forward event to its smart tag SmartHdl* pSmartHdl = dynamic_cast< SmartHdl* >( pHdl ); if(pSmartHdl && pSmartHdl->getTag().is() ) { @@ -288,7 +288,7 @@ bool SmartTagSet::RequestHelp( const HelpEvent& rHEvt ) if( pHdl ) { - // if a smart tag handle is hit, foreward event to its smart tag + // if a smart tag handle is hit, forward event to its smart tag SmartHdl* pSmartHdl = dynamic_cast< SmartHdl* >( pHdl ); if(pSmartHdl && pSmartHdl->getTag().is() ) { @@ -312,7 +312,7 @@ bool SmartTagSet::Command( const CommandEvent& rCEvt ) if( pHdl ) { - // if a smart tag handle is hit, foreward event to its smart tag + // if a smart tag handle is hit, forward event to its smart tag SmartHdl* pSmartHdl = dynamic_cast< SmartHdl* >( pHdl ); if(pSmartHdl && pSmartHdl->getTag().is() ) { diff --git a/vcl/source/control/ilstbox.cxx b/vcl/source/control/ilstbox.cxx index ee3d2a2733c3..77b1ceed4ccd 100644 --- a/vcl/source/control/ilstbox.cxx +++ b/vcl/source/control/ilstbox.cxx @@ -1436,7 +1436,7 @@ bool ImplListBoxWindow::ProcessKeyInput( const KeyEvent& rKEvt ) SetTopEntry( ( mnTop > nCurVis ) ? ( mnTop-nCurVis+1 ) : 0 ); } - // find first selectable starting from mnTop looking foreward + // find first selectable starting from mnTop looking forward nSelect = mpEntryList->FindFirstSelectable( mnTop, true ); } bDone = true;