diff options
author | Pranav Kant <pranavk@collabora.co.uk> | 2017-12-08 16:23:45 +0530 |
---|---|---|
committer | Pranav Kant <pranavk@collabora.co.uk> | 2017-12-09 00:17:20 +0530 |
commit | 782f8be6d4076b0152442e6200426010c1f6704f (patch) | |
tree | 808e81214aecbb740e64f4f9b26507236e075bf6 /include | |
parent | 42fae43d70d3d1b8fcc9fc6328b1060d6d72abfc (diff) |
lokdialog: Move lok cursor invalidation callbacks to vcl::Cursor
Change-Id: I5cbb845259b6802fb2a0776f8d8f19f9680115ad
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/cursor.hxx | 1 | ||||
-rw-r--r-- | include/vcl/window.hxx | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/cursor.hxx b/include/vcl/cursor.hxx index 59cac2799a9f..be6dd45c56c4 100644 --- a/include/vcl/cursor.hxx +++ b/include/vcl/cursor.hxx @@ -95,6 +95,7 @@ public: { return !(Cursor::operator==( rCursor )); } private: + void LOKNotify( vcl::Window* pWindow, const OUString& rAction ); void ImplRestore(); void ImplDoShow( bool bDrawDirect, bool bRestore ); bool ImplDoHide( bool bStop ); diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index f02acf125d23..0f2bc9024ea3 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -1226,7 +1226,6 @@ public: void LOKKeyInput(const KeyEvent& rKeyEvent); void LOKKeyUp(const KeyEvent& rKeyEvent); - void LOKCursor(const OUString& rAction, const std::vector<vcl::LOKPayloadItem>& rPayload); /** @name Accessibility */ |