summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-02-18 09:26:39 +0100
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-12 22:06:22 -0400
commit464810366933290a328f5c7ff888ce95ba81d075 (patch)
tree2ccbe2700dfcc7295f4f9cb2b56a578756dfec7d /include/editeng
parentaa2591f506f0ce55ecdb28020adce5a0c92bcfc4 (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 (cherry picked from commit 9ecd31fd3fda782dd16e88fd99dc9c71361482fe)
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/outliner.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 0d3d80c0688d..4a1b97faa1e9 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -378,13 +378,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...