summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-02-18 09:26:39 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-02-18 09:27:27 +0100
commit9ecd31fd3fda782dd16e88fd99dc9c71361482fe (patch)
treee504141a420750d664e94f6dafb4cd41819e89b9 /include
parentcf6cbd29fdeba54bd83a87c1165d49312dc2d2a6 (diff)
Fix SdrModel::libreOfficeKitCallback() vs ImpEditView duplication
It's better if ImpEditView doesn't have a copy of the event types which should be ignored during searching. Change-Id: I9044b9a6af4e3f8e5bf75973e1f975fb45ec72cf
Diffstat (limited to 'include')
-rw-r--r--include/editeng/outliner.hxx4
-rw-r--r--include/svx/svdmodel.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 8e428f2c9979..aee54ea0a025 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -376,13 +376,13 @@ public:
void SetEndCutPasteLinkHdl(const Link<LinkParamNone*,void> &rLink) { aEndCutPasteLink = rLink; }
};
-/// Interface class to know if we do tiled searching.
+/// Interface class to not depend on SdrModel in editeng.
class EDITENG_DLLPUBLIC OutlinerSearchable
{
public:
virtual ~OutlinerSearchable();
- virtual bool isTiledSearching() const = 0;
+ virtual void libreOfficeKitCallback(int nType, const char* pPayload) const = 0;
};
// some thesaurus functionality to avoid code duplication in different projects...
diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx
index 901591038765..6bf3fd2ce312 100644
--- a/include/svx/svdmodel.hxx
+++ b/include/svx/svdmodel.hxx
@@ -341,11 +341,11 @@ public:
/// Gets the LOK data registered by registerLibreOfficeKitCallback().
void* getLibreOfficeKitData() const;
/// Invokes the registered callback, if there are any.
- void libreOfficeKitCallback(int nType, const char* pPayload) const;
+ void libreOfficeKitCallback(int nType, const char* pPayload) const override;
/// Set if we are doing tiled searching.
void setTiledSearching(bool bTiledSearching);
/// Are we doing tiled searching?
- bool isTiledSearching() const override;
+ bool isTiledSearching() const;
// If a new MapMode is set on the RefDevice (or similar)
void RefDeviceChanged(); // not yet implemented
// default font height in logical units