]> git.lyx.org Git - features.git/commitdiff
Added "using" statement that I missed yesterday.
authorJosé Matox <jamatos@lyx.org>
Sat, 3 Nov 2001 11:43:23 +0000 (11:43 +0000)
committerJosé Matox <jamatos@lyx.org>
Sat, 3 Nov 2001 11:43:23 +0000 (11:43 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2961 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/insets/ChangeLog
src/insets/insetindex.C

index 4bb894608a3d40e1678fcf4d75e6974cda38885b..586d6cd26b99a748168fba06c01063cc79597459 100644 (file)
@@ -1,12 +1,3 @@
-2001-11-02  Ben Guillon  <nicolas.marsgui@libertysurf.fr>
-
-       * insetindex.h (docbook):
-       * insetindex.C (docbook): added support for docbook export.
-
-2001-11-02  José Matos  <jamatos@fep.up.pt>
-
-       * insetcaption.C(docbook): added support for docbook export.
-
 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
 
        * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
index 59fd244c3f8cde59837d62336f5464ee84b0dbaf..1d62331bb29cc13f1c3fe6151b0e116ad93573ae 100644 (file)
@@ -1,3 +1,16 @@
+2001-11-03  José Matos  <jamatos@fep.up.pt>
+
+       * insetindex.C: added using std::ostream that I forgot yesterday.
+
+2001-11-02  Ben Guillon  <nicolas.marsgui@libertysurf.fr>
+
+       * insetindex.h (docbook):
+       * insetindex.C (docbook): added support for docbook export.
+
+2001-11-02  José Matos  <jamatos@fep.up.pt>
+
+       * insetcaption.C(docbook): added support for docbook export.
+
 2001-11-02  Dekel Tsur  <dekelts@tau.ac.il>
 
        * insetexternal.C (updateExternal): Do not run update command if
index 73e24fc274cd33888ad47537b4dda7edae71e77c..6e5bcff1800d68980daf2b9a93198d02fd891501 100644 (file)
@@ -11,6 +11,8 @@
 #include "LaTeXFeatures.h"
 #include "gettext.h"
 
+using std::ostream;
+
 InsetIndex::InsetIndex(InsetCommandParams const & p, bool)
        : InsetCommand(p)
 {}