diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-14 10:50:58 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-14 14:06:14 +0000 |
commit | 75d2e7e5d58b42d30a2d1b054547a5852dabd2fe (patch) | |
tree | f6068104cf4dda8c67bf8aad8f12992a3e28abe4 /include | |
parent | 8748ae646bd5347ce9b964efbb941a873a7b5e0d (diff) |
GetData is a hopelessly generic name
when you want to find the uses of it
Change-Id: I580c194f0fd200505d3df99089afc0872921a67b
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/cmdevt.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/cmdevt.hxx b/include/vcl/cmdevt.hxx index 439e9692d9e4..bd4df39d234d 100644 --- a/include/vcl/cmdevt.hxx +++ b/include/vcl/cmdevt.hxx @@ -358,7 +358,7 @@ class VCL_DLLPUBLIC CommandEvent private: Point maPos; void* mpData; - sal_uInt16 mnCommand; + sal_uInt16 mnCommand; bool mbMouseEvent; public: @@ -366,10 +366,10 @@ public: CommandEvent( const Point& rMousePos, sal_uInt16 nCmd, bool bMEvt = false, const void* pCmdData = NULL ); - sal_uInt16 GetCommand() const { return mnCommand; } + sal_uInt16 GetCommand() const { return mnCommand; } const Point& GetMousePosPixel() const { return maPos; } bool IsMouseEvent() const { return mbMouseEvent; } - void* GetData() const { return mpData; } + void* GetEventData() const { return mpData; } const CommandExtTextInputData* GetExtTextInputData() const; const CommandInputContextData* GetInputContextChangeData() const; |