]> git.lyx.org Git - features.git/commitdiff
return correct value
authorLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 9 May 2002 13:36:45 +0000 (13:36 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 9 May 2002 13:36:45 +0000 (13:36 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4147 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/ChangeLog
src/insets/insetfloat.C

index 76acb6f94981d69bf634aefa3b9868bb9e99bc1b..8612fd2e70e2f32f5616817006fbd9299c5e6d64 100644 (file)
@@ -1,3 +1,7 @@
+2002-05-09  Dekel Tsur  <dekelts@tau.ac.il>
+
+       * insetfloat.C (latex): Return correct value.
+
 2002-05-04  Herbert Voss  <voss@perce.de>
 
        * InsetgraphicsParams.C (read): fix bug with WH
@@ -5,7 +9,7 @@
 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
 
        * insetfloat.C (latex): More sensible latex output
-       (fix the problem with endfloat).
+       (fix the problem with endfloat).
 
 2002-05-02  José Matos  <jamatos@fep.up.pt>
 
@@ -66,7 +70,7 @@
        * insettext.C (draw): call a fullRebreak on the row where we had a
        change and reset the cursor and selection-cursors.
 
-       * insettabular.C (insetUnlock): 
+       * insettabular.C (insetUnlock):
        (insetButtonPress): call an update before setting the_locking_inset = 0
        as otherwise we don't repaint!
        (update): reset the cursor position when we changed dimensions as
 
 2002-04-16  Juergen Vigna  <jug@sad.it>
 
-       * insettabular.C (insetButtonPress): 
+       * insettabular.C (insetButtonPress):
        (insetUnlock): call a redraw on unlocking the cell inset.
 
        * insettext.C (insetButtonPress): same as below.
 
 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
-       * insetfloatlist.C (getScreenLabel): 
+       * insetfloatlist.C (getScreenLabel):
        (latex): use Floating::listName
        (validate): new method
 
index 94e27396aaa048159506f252e2afc86c157fb162..c458a9560a70f0ea04ba05cd0012f1e1c122f9bb 100644 (file)
@@ -255,7 +255,7 @@ int InsetFloat::latex(Buffer const * buf,
        // In this case, we do not case if the current output line is empty.
        os << "\n\\end{" << tmptype << "}\n";
 
-       return i + 2;
+       return i + 4;
 }