mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
trivial fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8385 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
20198582f1
commit
905a6f6158
@ -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>
|
||||
|
||||
|
@ -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!"));
|
||||
|
Loading…
Reference in New Issue
Block a user