diff options
author | Mihai Varga <mihai.varga@collabora.com> | 2015-11-02 16:52:48 +0200 |
---|---|---|
committer | Mihai Varga <mihai.mv13@gmail.com> | 2015-11-02 16:54:16 +0200 |
commit | bcd8da6849780b9680963ef3313d14209a46e5fa (patch) | |
tree | 6c082da28eae4ba501a1e05416860d70e97651e4 /sc | |
parent | 5654e8f2cfc3ae33da3eae366229b6cb862750bf (diff) |
LOK: make use of MOUSEMOVE in calc
Change-Id: Ideb7bdabd86e95cf10c7f19f0900110b816970c2
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 27fe63882596..2e4bb66be317 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -624,6 +624,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; |