summaryrefslogtreecommitdiff
path: root/vcl/win/source/window/salframe.cxx
diff options
context:
space:
mode:
authorStefan Knorr <heinzlesspam@gmail.com>2013-06-26 16:36:20 +0200
committerStefan Knorr <heinzlesspam@gmail.com>2013-07-28 12:17:13 +0200
commit3a4a27c6ee882fae3d08a0e024731f55fbfe067f (patch)
tree40e9129fc04a9526829e9ae05b1aef81b3c2c3f5 /vcl/win/source/window/salframe.cxx
parent8e4f4fb541277e35aca7d8f210307635f7a81443 (diff)
Few comment translations, commented-out code removal, comment spellcheck
Change-Id: Icd27eb2d11bf6ddd9932a1d0c8c9aa3494962bc8
Diffstat (limited to 'vcl/win/source/window/salframe.cxx')
-rw-r--r--vcl/win/source/window/salframe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx
index dca67c9704fa..63454c2e5fba 100644
--- a/vcl/win/source/window/salframe.cxx
+++ b/vcl/win/source/window/salframe.cxx
@@ -3231,7 +3231,7 @@ static long ImplHandleMouseMsg( HWND hWnd, UINT nMsg,
pSalData->mpMouseLeaveTimer = new AutoTimer;
pSalData->mpMouseLeaveTimer->SetTimeout( SAL_MOUSELEAVE_TIMEOUT );
pSalData->mpMouseLeaveTimer->Start();
- // We dont need to set a timeout handler, because we test
+ // We don't need to set a timeout handler, because we test
// for mouseleave in the timeout callback
}
aMouseEvt.mnButton = 0;
@@ -3251,7 +3251,7 @@ static long ImplHandleMouseMsg( HWND hWnd, UINT nMsg,
delete pSalData->mpMouseLeaveTimer;
pSalData->mpMouseLeaveTimer = NULL;
}
- // Mouse-Coordinaates are relativ to the screen
+ // Mouse-Coordinates are relative to the screen
POINT aPt;
aPt.x = (short)LOWORD( lParam );
aPt.y = (short)HIWORD( lParam );
@@ -3298,7 +3298,7 @@ static long ImplHandleMouseMsg( HWND hWnd, UINT nMsg,
}
// check if this window was destroyed - this might happen if we are the help window
- // and sent a mouse leave message to the application which killed the help window, ie ourself
+ // and sent a mouse leave message to the application which killed the help window, ie ourselves
if( !IsWindow( hWnd ) )
return 0;