summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-18 09:09:30 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-09-20 06:34:44 +0000
commit75d339175e06334de42108c2e26adca65700608a (patch)
treeee7afa0278cfcc57e133363693e1bf507f161d2a /vcl
parentc830135c96a6ab2281a0adbd0e9563e1dc95cbf1 (diff)
remove unused Link<> field
Change-Id: I6ceb33a1c7311962f1d8902fab01fc7d6c91975e Reviewed-on: https://gerrit.libreoffice.org/18697 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/svapp.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 350e829987c8..2b5d8d789191 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -144,7 +144,6 @@ struct ImplHotKey
ImplHotKey* mpNext;
void* mpUserData;
vcl::KeyCode maKeyCode;
- Link<> maLink;
};
struct ImplEventHook
@@ -1425,7 +1424,6 @@ bool ImplCallHotKey( const vcl::KeyCode& rKeyCode )
{
if ( pHotKeyData->maKeyCode == rKeyCode )
{
- pHotKeyData->maLink.Call( pHotKeyData->mpUserData );
return true;
}