X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxfind.cpp;h=bb53c35854739da4d9138dd7785bcdb38430b352;hb=2455bc258f3b62c29ec4a41cb88070ff8518e842;hp=1a214589fb8de38061300f0d832f2e1aa225afc9;hpb=02e8322c793ed70371abd027b85facdf235ad8d2;p=lyx.git diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp index 1a214589fb..bb53c35854 100644 --- a/src/lyxfind.cpp +++ b/src/lyxfind.cpp @@ -22,9 +22,7 @@ #include "buffer_funcs.h" #include "BufferView.h" #include "Changes.h" -#include "support/debug.h" #include "FuncRequest.h" -#include "support/gettext.h" #include "Text.h" #include "Paragraph.h" #include "ParIterator.h" @@ -32,7 +30,9 @@ #include "frontends/alert.h" #include "support/convert.h" +#include "support/debug.h" #include "support/docstream.h" +#include "support/gettext.h" #include "support/lstrings.h" using namespace std; @@ -307,11 +307,9 @@ void replace(BufferView * bv, FuncRequest const & ev, bool has_deleted) } else { // if we have deleted characters, we do not replace at all, but // rather search for the next occurence - bool const found = find(bv, search, - casesensitive, matchword, forward); - - if (!found) - // emit message signal. + if (find(bv, search, casesensitive, matchword, forward)) + bv->showCursor(); + else bv->message(_("String not found!")); } }