diff options
author | Luc Castermans <luc.castermans@gmail.com> | 2014-04-05 11:51:33 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-04-05 05:52:23 -0500 |
commit | 6c1744613e09345005d98c24b22a72c536887328 (patch) | |
tree | ac39b9a19f5b5d6e84c92812c88d516d6e8c92ce /vcl | |
parent | c3137a65851e401ce4e3d4e48c0e5872edf46412 (diff) |
Translated German comments
Change-Id: Id642d6719c406fe6b55fb1d8f06175d204878d70
Reviewed-on: https://gerrit.libreoffice.org/8867
Tested-by: David Tardon <dtardon@redhat.com>
Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/win/source/window/salobj.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/win/source/window/salobj.cxx b/vcl/win/source/window/salobj.cxx index d79c52271b4c..3e41e6523160 100644 --- a/vcl/win/source/window/salobj.cxx +++ b/vcl/win/source/window/salobj.cxx @@ -97,8 +97,8 @@ LRESULT CALLBACK SalSysMsgProc( int nCode, WPARAM wParam, LPARAM lParam ) (pData->message != WM_KEYUP) ) pSalData->mnSalObjWantKeyEvt = 0; - // Testen, ob wir Daten fuer ein SalObject-Fenster behandeln - // muessen + + // check if we need to proces data for a SalObject-window WinSalObject* pObject; if ( pData->message == WM_SETFOCUS ) { @@ -164,7 +164,7 @@ bool ImplSalPreDispatchMsg( MSG* pMsg ) // SysKeys are processed as WM_SYSCOMMAND // Char-Events are not processed, as they are not accelerator-relevant bool bWantedKeyCode = FALSE; - // A-Z, 0-9 nur in Verbindung mit Control-Taste + // A-Z, 0-9 only when combined with the Control-key if ( ((pMsg->wParam >= 65) && (pMsg->wParam <= 90)) || ((pMsg->wParam >= 48) && (pMsg->wParam <= 57)) ) { |