trivial fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8385 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2004-02-03 07:57:29 +00:00
parent 20198582f1
commit 905a6f6158
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2004-02-03 Alfredo Braunstein <abraunst@lyx.org>
* lyxfind.C (find): fix argument order in call to ::find
2004-02-02 André Pönitz <poenitz@gmx.net>

View File

@ -123,7 +123,7 @@ void find(BufferView * bv, FuncRequest const & ev)
bool forward = parse_bool(howto);
bool const found = ::find(bv, search,
forward, casesensitive, matchword);
casesensitive, matchword, forward);
if (!found)
bv->owner()->message(_("String not found!"));