summaryrefslogtreecommitdiff
path: root/vcl/source/window/event.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-14 10:50:58 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-14 14:06:14 +0000
commit75d2e7e5d58b42d30a2d1b054547a5852dabd2fe (patch)
treef6068104cf4dda8c67bf8aad8f12992a3e28abe4 /vcl/source/window/event.cxx
parent8748ae646bd5347ce9b964efbb941a873a7b5e0d (diff)
GetData is a hopelessly generic name
when you want to find the uses of it Change-Id: I580c194f0fd200505d3df99089afc0872921a67b
Diffstat (limited to 'vcl/source/window/event.cxx')
-rw-r--r--vcl/source/window/event.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/event.cxx b/vcl/source/window/event.cxx
index 01fb32213ff8..091165c5181d 100644
--- a/vcl/source/window/event.cxx
+++ b/vcl/source/window/event.cxx
@@ -317,7 +317,7 @@ CommandEvent ImplTranslateCommandEvent( const CommandEvent& rCEvt, vcl::Window*
Point aPos = pSource->OutputToScreenPixel( rCEvt.GetMousePosPixel() );
aPos = pDest->ScreenToOutputPixel( aPos );
- return CommandEvent( aPos, rCEvt.GetCommand(), rCEvt.IsMouseEvent(), rCEvt.GetData() );
+ return CommandEvent( aPos, rCEvt.GetCommand(), rCEvt.IsMouseEvent(), rCEvt.GetEventData() );
}
void Window::ImplNotifyKeyMouseCommandEventListeners( NotifyEvent& rNEvt )