inverted WORDFINDBACK/FORWARD from Alfredo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5851 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-12-18 04:02:49 +00:00
parent 0cee971fe1
commit 54d69a7caa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-12-17 Alfredo Braunstein <abraunst@libero.it>
* lyxfunc.C: correct inversion of WORDFINDBACK/FORWARD
2002-12-16 Angus Leeming <leeming@lyx.org>
* lyxrc.[Ch]:

View File

@ -896,7 +896,7 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
} else {
searched_string = last_search;
}
bool fw = (action == LFUN_WORDFINDBACKWARD);
bool fw = (action == LFUN_WORDFINDFORWARD);
if (!searched_string.empty()) {
lyxfind::LyXFind(view(), searched_string, fw);
}