Kaydet (Commit) 6c174461 authored tarafından Luc Castermans's avatar Luc Castermans Kaydeden (comit) David Tardon

Translated German comments

Change-Id: Id642d6719c406fe6b55fb1d8f06175d204878d70
Reviewed-on: https://gerrit.libreoffice.org/8867Tested-by: 's avatarDavid Tardon <dtardon@redhat.com>
Reviewed-by: 's avatarDavid Tardon <dtardon@redhat.com>
üst c3137a65
...@@ -97,8 +97,8 @@ LRESULT CALLBACK SalSysMsgProc( int nCode, WPARAM wParam, LPARAM lParam ) ...@@ -97,8 +97,8 @@ LRESULT CALLBACK SalSysMsgProc( int nCode, WPARAM wParam, LPARAM lParam )
(pData->message != WM_KEYUP) ) (pData->message != WM_KEYUP) )
pSalData->mnSalObjWantKeyEvt = 0; 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; WinSalObject* pObject;
if ( pData->message == WM_SETFOCUS ) if ( pData->message == WM_SETFOCUS )
{ {
...@@ -164,7 +164,7 @@ bool ImplSalPreDispatchMsg( MSG* pMsg ) ...@@ -164,7 +164,7 @@ bool ImplSalPreDispatchMsg( MSG* pMsg )
// SysKeys are processed as WM_SYSCOMMAND // SysKeys are processed as WM_SYSCOMMAND
// Char-Events are not processed, as they are not accelerator-relevant // Char-Events are not processed, as they are not accelerator-relevant
bool bWantedKeyCode = FALSE; 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)) || if ( ((pMsg->wParam >= 65) && (pMsg->wParam <= 90)) ||
((pMsg->wParam >= 48) && (pMsg->wParam <= 57)) ) ((pMsg->wParam >= 48) && (pMsg->wParam <= 57)) )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment