summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/window
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-15 15:28:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-17 15:07:35 +0200
commit561a02ec72cf963d7cd59cfb9a183c1032f0861b (patch)
treea25f9bc0d2ef9af339be1e33f138d4e6f9691fca /vcl/unx/generic/window
parentf9d5da8b491e30a08fa6996164e12e4d8715af46 (diff)
loplugin:unusedfields in vcl part3
Change-Id: I5a6319ba1667af6e9b7b92c22f858188c28c4c61 Reviewed-on: https://gerrit.libreoffice.org/38835 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/unx/generic/window')
-rw-r--r--vcl/unx/generic/window/salframe.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/unx/generic/window/salframe.cxx b/vcl/unx/generic/window/salframe.cxx
index 0988307119c3..46d642f98a64 100644
--- a/vcl/unx/generic/window/salframe.cxx
+++ b/vcl/unx/generic/window/salframe.cxx
@@ -3157,7 +3157,6 @@ long X11SalFrame::HandleKeyEvent( XKeyEvent *pEvent )
}
aModEvt.mnCode = nModCode;
- aModEvt.mnTime = pEvent->time;
int nRet = CallCallback( SalEvent::KeyModChange, &aModEvt );
@@ -3279,7 +3278,6 @@ long X11SalFrame::HandleKeyEvent( XKeyEvent *pEvent )
{
aKeyEvt.mnCode = nKeyCode | nModCode;
aKeyEvt.mnRepeat = 0;
- aKeyEvt.mnTime = pEvent->time;
aKeyEvt.mnCharCode = pString[ 0 ];
if( KeyRelease == pEvent->type )