summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-26 03:20:12 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-05-26 03:29:09 +0200
commitdc91ebed1a3b0ef900b1bb5cf203c6a9aeb83016 (patch)
treedbae3fd51b4bc5951e7aeba6a5b13e7e87c473eb /include
parent8097fff2cc3ec601248c55f4d1434bd6d4c6c66e (diff)
react only to left mouse click
Change-Id: Ia4c2c52b8803cd36d7ed32be559ba446589377e7
Diffstat (limited to 'include')
-rw-r--r--include/vcl/openglwin.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/openglwin.hxx b/include/vcl/openglwin.hxx
index d2e86cce90b1..85d19408d198 100644
--- a/include/vcl/openglwin.hxx
+++ b/include/vcl/openglwin.hxx
@@ -24,7 +24,7 @@ class VCLOPENGL_DLLPUBLIC IRenderer
public:
virtual ~IRenderer() {}
virtual void update() = 0;
- virtual void clickedAt(const Point& rPos) = 0;
+ virtual void clickedAt(const Point& rPos, sal_uInt16 nButtons) = 0;
virtual void mouseDragMove(const Point& rPosBegin, const Point& rPosEnd, sal_uInt16 nButtons) = 0;
virtual void scroll(long nDelta) = 0;