remove unneeded bv->text->init call

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8132 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2003-11-24 20:03:47 +00:00
parent a1b23b2f07
commit 44dd615836
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2003-11-24 Alfredo Braunstein <abraunst@lyx.org>
* lyxfind.C (findNextChange): remove unneeded bv->text->init call
2003-11-24 André Pönitz <poenitz@gmx.net>

View File

@ -266,7 +266,6 @@ bool findNextChange(BufferView * bv)
}
}
pos_type length = end - pos;
bv->text->init(bv);
put_selection_at(bv, cur, length, true);
return true;
}