diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-12 13:08:49 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-16 09:38:08 +0100 |
commit | 4a8afa003b854e74807389c8f82fd4609485f1b8 (patch) | |
tree | 16a66fe3adecff4a98e09d5fb3134a857e0fa504 /svx/source/svdraw/svdmodel.cxx | |
parent | 5666552a07c0f742087cf987679ffeb5fa99b1a4 (diff) |
Add ImpEditView::libreOfficeKitCallback()
And various other methods, so that it's possible to invoke the callback
in ImpEditView. This will be needed by the blinking editeng cursor.
Change-Id: Ie1b6957e5c48f606e71d5808df3f632924d3a2ec
Diffstat (limited to 'svx/source/svdraw/svdmodel.cxx')
-rw-r--r-- | svx/source/svdraw/svdmodel.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx index 66f004e6e261..9e59338bdbd3 100644 --- a/svx/source/svdraw/svdmodel.cxx +++ b/svx/source/svdraw/svdmodel.cxx @@ -820,6 +820,16 @@ void SdrModel::libreOfficeKitCallback(int nType, const char* pPayload) const mpLibreOfficeKitCallback(nType, pPayload, mpLibreOfficeKitData); } +LibreOfficeKitCallback SdrModel::getLibreOfficeKitCallback() const +{ + return mpLibreOfficeKitCallback; +} + +void* SdrModel::getLibreOfficeKitData() const +{ + return mpLibreOfficeKitData; +} + void SdrModel::ImpReformatAllTextObjects() { if( isLocked() ) |