diff --git a/src/ChangeLog b/src/ChangeLog index 944e385c1c..0277bac07f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,6 @@ +2003-11-24 Alfredo Braunstein + + * lyxfind.C (findNextChange): remove unneeded bv->text->init call 2003-11-24 André Pönitz diff --git a/src/lyxfind.C b/src/lyxfind.C index 34499ae36b..0c69863dcb 100644 --- a/src/lyxfind.C +++ b/src/lyxfind.C @@ -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; }