diff options
author | Mihai Varga <mihai.varga@collabora.com> | 2015-11-02 16:52:48 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2016-02-22 08:58:53 +0100 |
commit | a59d609263a7262c4f16e8c023d41350431057a3 (patch) | |
tree | 24c1b37bda88ca0e2a8ae638d64f9c62b8a85ccf /sc | |
parent | fce1ec4ed2ec0a9e2c62ee5c05d2087bb47e33eb (diff) |
LOK: make use of MOUSEMOVE in calc
Change-Id: Ideb7bdabd86e95cf10c7f19f0900110b816970c2
(cherry picked from commit bcd8da6849780b9680963ef3313d14209a46e5fa)
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 072923f6fd3a..183aed8ec556 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -614,6 +614,9 @@ void ScModelObj::postMouseEvent(int nType, int nX, int nY, int nCount, int nButt pGridWindow->EndTracking(TrackingEventFlags::DontCallHdl); break; + case LOK_MOUSEEVENT_MOUSEMOVE: + pGridWindow->MouseMove(aEvent); + break; default: assert(false); break; |