summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-06-15 17:03:57 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-02-06 09:12:27 -0500
commit9869d08f3f69d9ccc39eeb30fa046784de8259a9 (patch)
tree39f1fc636b398224ebf6b9834c0c7c881b81c564 /vcl
parent348aaa3ef634674d123b1a1e72f062fd3783af8f (diff)
Fix typos
Change-Id: I28cfc629dc3d6ef54128615452667ccce86c1072 Reviewed-on: https://gerrit.libreoffice.org/16297 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> (cherry picked from commit 01532b1ab8f34ac0a87c17efaa2e6c7e9ac29b3b)
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/unx/wmadaptor.hxx2
-rw-r--r--vcl/source/control/ilstbox.cxx2
-rw-r--r--vcl/source/window/accmgr.cxx2
-rw-r--r--vcl/source/window/toolbox.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/unx/wmadaptor.hxx b/vcl/inc/unx/wmadaptor.hxx
index 35fb4590b508..7d4000033964 100644
--- a/vcl/inc/unx/wmadaptor.hxx
+++ b/vcl/inc/unx/wmadaptor.hxx
@@ -243,7 +243,7 @@ public:
* tell whether legacy partial full screen handling is necessary
* see #i107249#: NET_WM_STATE_FULLSCREEN is not well defined, but de facto
* modern WM's interpret it the "right" way, namely they make "full screen"
- * taking twin view or Xinerama into accound and honor the positioning hints
+ * taking twin view or Xinerama into account and honor the positioning hints
* to see which screen actually was meant to use for fullscreen.
*/
bool isLegacyPartialFullscreen() const
diff --git a/vcl/source/control/ilstbox.cxx b/vcl/source/control/ilstbox.cxx
index cdb759d89b2f..fde4faa19bca 100644
--- a/vcl/source/control/ilstbox.cxx
+++ b/vcl/source/control/ilstbox.cxx
@@ -1090,7 +1090,7 @@ bool ImplListBoxWindow::SelectEntries( sal_Int32 nSelect, LB_EVENT_TYPE eLET, bo
}
if( nAnchor != LISTBOX_ENTRY_NOTFOUND )
{
- // All entries from achor to nSelect have to be selected
+ // All entries from Anchor to nSelect have to be selected
sal_Int32 nStart = std::min( nSelect, nAnchor );
sal_Int32 nEnd = std::max( nSelect, nAnchor );
for ( sal_Int32 n = nStart; n <= nEnd; n++ )
diff --git a/vcl/source/window/accmgr.cxx b/vcl/source/window/accmgr.cxx
index 3ce6099355e9..5bc762739c40 100644
--- a/vcl/source/window/accmgr.cxx
+++ b/vcl/source/window/accmgr.cxx
@@ -220,7 +220,7 @@ bool ImplAccelManager::IsAccelKey( const vcl::KeyCode& rKeyCode, sal_uInt16 nRep
// already assigned !
if ( pEntry->mbEnabled )
{
- // first call activate/aeactivate-Handler
+ // first call activate/deactivate-Handler
pAccel->Activate();
pAccel->Deactivate();
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index f26eb3390857..d038d2c605f1 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -3583,7 +3583,7 @@ bool ToolBox::ImplHandleMouseButtonUp( const MouseEvent& rMEvt, bool bCancel )
void ToolBox::MouseMove( const MouseEvent& rMEvt )
{
// pressing a modifier generates synthetic mouse moves
- // ignore it if keyboard selection is acive
+ // ignore it if keyboard selection is active
if( HasFocus() && ( rMEvt.GetMode() & MouseEventModifiers::MODIFIERCHANGED ) )
return;