diff options
author | Jim Raykowski <raykowj@gmail.com> | 2020-09-26 21:18:48 -0800 |
---|---|---|
committer | Jim Raykowski <raykowj@gmail.com> | 2020-09-30 05:22:02 +0200 |
commit | f4f0ea6a41e99e12812a791f732694c8e86acb8c (patch) | |
tree | 6b6c6ef257024dc14b49f85893d6eaeb5e8892bb /include/svl | |
parent | 28ed472e4e15348cb9a7ee9b43a22b1c92836471 (diff) |
tdf#137013 fix Writer find toolbar ui regressions
introduced by enhancement patch tdf#132366
Change-Id: I951fcd7891c75e7fbf715581c316b4446d967cd9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103499
Tested-by: Jenkins
Reviewed-by: Jim Raykowski <raykowj@gmail.com>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/hint.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/svl/hint.hxx b/include/svl/hint.hxx index 77e838a5d21c..adff3fa6239d 100644 --- a/include/svl/hint.hxx +++ b/include/svl/hint.hxx @@ -112,6 +112,7 @@ enum class SfxHintId { SwDrawViewsCreated, SwSplitNodeOperation, SwSectionFrameMoveAndDelete, + SwNavigatorUpdateTracking, SwNavigatorSelectOutlinesWithSelections, ThisIsAnSdrHint // used to avoid dynamic_cast @@ -193,6 +194,7 @@ inline std::basic_ostream<charT, traits> & operator <<( case SfxHintId::SwDrawViewsCreated: return stream << "SwDrawViewsCreated"; case SfxHintId::SwSplitNodeOperation: return stream << "SwSplitNodeOperation"; case SfxHintId::SwSectionFrameMoveAndDelete: return stream << "SwSectionFrameMoveAndDelete"; + case SfxHintId::SwNavigatorUpdateTracking: return stream << "SwNavigatorUpdateTracking"; case SfxHintId::SwNavigatorSelectOutlinesWithSelections: return stream << "SwNavigatorSelectOutlinesWithSelections"; case SfxHintId::ThisIsAnSdrHint: return stream << "SdrHint"; |