]> git.lyx.org Git - features.git/commitdiff
remove unneeded bv->text->init call
authorAlfredo Braunstein <abraunst@lyx.org>
Mon, 24 Nov 2003 20:03:47 +0000 (20:03 +0000)
committerAlfredo Braunstein <abraunst@lyx.org>
Mon, 24 Nov 2003 20:03:47 +0000 (20:03 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8132 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/lyxfind.C

index 944e385c1cd2c5fb294236f4b392e9a17e28384e..0277bac07f0da8eeb8c5781bbd412e7896916320 100644 (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>
 
index 34499ae36b5d13cf686bbbbfe73929682c108598..0c69863dcb10db9f8bf1714aa221cd6aaa976547 100644 (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;
 }