diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-23 14:10:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-27 05:16:59 +0000 |
commit | 1ac18c60bb280855cfcc8d92886709cd6db35118 (patch) | |
tree | 0f81560261212c485a7f4ab6b5844a6e1f5c7aaa /vcl/win | |
parent | 3f22898c157995eecf5dbd610591d378820cf992 (diff) |
loplugin:singlevalfields in vcl(part2)
Change-Id: I4782c6f6d3d090ba0f9e29af8afdd7d88aa2d382
Reviewed-on: https://gerrit.libreoffice.org/26598
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/window/salframe.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx index fef5448842d5..084705cd2b35 100644 --- a/vcl/win/window/salframe.cxx +++ b/vcl/win/window/salframe.cxx @@ -4989,10 +4989,8 @@ static bool ImplHandleIMECompositionInput( WinSalFrame* pFrame, // Init Event SalExtTextInputEvent aEvt; - aEvt.mnTime = GetMessageTime(); aEvt.mpTextAttr = NULL; aEvt.mnCursorPos = 0; - aEvt.mbOnlyCursor = FALSE; aEvt.mnCursorFlags = 0; // If we get a result string, then we handle this input @@ -5131,10 +5129,8 @@ static bool ImplHandleIMEComposition( HWND hWnd, LPARAM lParam ) if ( !lParam ) { SalExtTextInputEvent aEvt; - aEvt.mnTime = GetMessageTime(); aEvt.mpTextAttr = NULL; aEvt.mnCursorPos = 0; - aEvt.mbOnlyCursor = FALSE; aEvt.mnCursorFlags = 0; pFrame->CallCallback( SalEvent::ExtTextInput, (void*)&aEvt ); pFrame->CallCallback( SalEvent::EndExtTextInput, (void*)NULL ); |