diff options
author | Pranav Kant <pranavk@collabora.co.uk> | 2017-07-29 11:20:34 +0530 |
---|---|---|
committer | Pranav Kant <pranavk@collabora.co.uk> | 2017-10-02 10:57:56 +0530 |
commit | 47111c3a5a732ead4039c7c78077ac12ab0238e8 (patch) | |
tree | 917b0550cd57293dec444b2169acb2f68ace1d71 /include/vcl/IDialogRenderable.hxx | |
parent | 2508ec1041098382524eb9b06fcb249af7f7a313 (diff) |
lokdialog: Set up intial posting mouse events to dialogs
Events from the dialog in GTV are forwarded correctly, but the events
are still not processed by the dialog in core.
Change-Id: Ib95ac0a3cd23f6cc2763c21425a67402b15f2de2
Diffstat (limited to 'include/vcl/IDialogRenderable.hxx')
-rw-r--r-- | include/vcl/IDialogRenderable.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/IDialogRenderable.hxx b/include/vcl/IDialogRenderable.hxx index 2621ec03947a..cf9d41e54cde 100644 --- a/include/vcl/IDialogRenderable.hxx +++ b/include/vcl/IDialogRenderable.hxx @@ -33,11 +33,11 @@ public: virtual void paintDialog(const DialogID& rDialogID, VirtualDevice &rDevice, int& nOutputWidth, int& nOutputHeight) = 0; - virtual void postDialogMouseEvent(const DialogID& rDialogID, int nType, - int nCharCode, int nKeyCode) = 0; + virtual void postDialogKeyEvent(const DialogID& rDialogID, int nType, + int nCharCode, int nKeyCode) = 0; - virtual void postDialogKeyEvent(const DialogID& rDialogID, int nType, int nX, int nY, - int nCount, int nButtons, int nModifier) = 0; + virtual void postDialogMouseEvent(const DialogID& rDialogID, int nType, int nX, int nY, + int nCount, int nButtons, int nModifier) = 0; }; } // namespace vcl |