]> git.lyx.org Git - features.git/commitdiff
lyxfind.cpp: fix spacing
authorUwe Stöhr <uwestoehr@web.de>
Sun, 7 Dec 2008 17:18:30 +0000 (17:18 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Sun, 7 Dec 2008 17:18:30 +0000 (17:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27800 a592a061-630c-0410-9148-cb99ea01b6c8

src/lyxfind.cpp

index 6e15560f604842db0039c8fb4b2d9301bcc1a64f..764eb04f1491e3a98a75b8cbe27aacdba3416538 100644 (file)
@@ -907,7 +907,7 @@ bool findAdv(BufferView * bv, FindAdvOptions const & opt)
        int match_len = 0;
 
        if (opt.search.empty()) {
-                       bv->message(_("Search text is empty !"));
+                       bv->message(_("Search text is empty!"));
                        return false;
        }
 //     if (! bv->buffer()) {
@@ -923,18 +923,18 @@ bool findAdv(BufferView * bv, FindAdvOptions const & opt)
                                match_len = findBackwardsAdv(cur, matchAdv);
        } catch (...) {
                // This may only be raised by boost::regex()
-               bv->message(_("Invalid regular expression !"));
+               bv->message(_("Invalid regular expression!"));
                return false;
        }
 
        if (match_len == 0) {
-               bv->message(_("Match not found !"));
+               bv->message(_("Match not found!"));
                return false;
        }
 
        LYXERR(Debug::DEBUG, "Putting selection at " << cur << " with len: " << match_len);
        bv->putSelectionAt(cur, match_len, ! opt.forward);
-       bv->message(_("Match found !"));
+       bv->message(_("Match found!"));
        //bv->update();
 
        return true;