diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/Outliner.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx index aff2e76c47f3..60873d00a0ef 100644 --- a/sd/source/ui/view/Outliner.cxx +++ b/sd/source/ui/view/Outliner.cxx @@ -70,6 +70,7 @@ #include "framework/FrameworkHelper.hxx" #include <svx/svxids.hrc> #include <editeng/editerr.hxx> +#include <LibreOfficeKit/LibreOfficeKitEnums.h> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -1056,7 +1057,12 @@ void Outliner::ShowEndOfSearchDialog() if (mbStringFound) aString = SD_RESSTR(STR_END_SEARCHING); else + { aString = SD_RESSTR(STR_STRING_NOTFOUND); + mpDrawDocument->libreOfficeKitCallback(LOK_CALLBACK_SEARCH_NOT_FOUND, + mpSearchItem->GetSearchString().toUtf8().getStr()); + + } } else { |