summaryrefslogtreecommitdiff
path: root/vcl/win/window/salframe.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-12 14:38:49 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-12 18:29:05 +0200
commit1a97b9ab0489c742ffbfc8270e4bd153006b1273 (patch)
treed6042124a06a264ef0673d8c86220631f4280dff /vcl/win/window/salframe.cxx
parent45d54cc6518d4ef408f7c7d5c55d6b7adfc9f12a (diff)
Fix typos
Change-Id: I38e23114a257d1baf2a9f36fd8ac0fcf8f3938b3 Reviewed-on: https://gerrit.libreoffice.org/77356 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'vcl/win/window/salframe.cxx')
-rw-r--r--vcl/win/window/salframe.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx
index bf2c15bca26d..cb46d5e29279 100644
--- a/vcl/win/window/salframe.cxx
+++ b/vcl/win/window/salframe.cxx
@@ -314,7 +314,7 @@ SalFrame* ImplSalCreateFrame( WinSalInstance* pInst,
}
else
{
- // Only with WS_OVRLAPPED we get a useful default position/size
+ // Only with WS_OVERLAPPED we get a useful default position/size
if ( (nSalFrameStyle & (SalFrameStyleFlags::SIZEABLE | SalFrameStyleFlags::MOVEABLE)) ==
(SalFrameStyleFlags::SIZEABLE | SalFrameStyleFlags::MOVEABLE) )
nSysStyle |= WS_OVERLAPPED;
@@ -447,8 +447,8 @@ SalFrame* ImplSalCreateFrame( WinSalInstance* pInst,
return nullptr;
}
- // If we have a Window with an Caption Bar and without
- // an MaximizeBox, we change the SystemMenu
+ // If we have a Window with a Caption Bar and without
+ // a MaximizeBox, we change the SystemMenu
if ( (nSysStyle & (WS_CAPTION | WS_MAXIMIZEBOX)) == (WS_CAPTION) )
{
HMENU hSysMenu = GetSystemMenu( hWnd, FALSE );
@@ -3376,7 +3376,7 @@ static bool ImplHandleKeyMsg( HWND hWnd, UINT nMsg,
return false;
// only "free flying" WM_CHAR messages arrive here, that are
- // created by typing a ALT-NUMPAD combination
+ // created by typing an ALT-NUMPAD combination
SalKeyEvent aKeyEvt;
if ( (wParam >= '0') && (wParam <= '9') )