Added "using" statement that I missed yesterday.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2961 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2001-11-03 11:43:23 +00:00
parent 7a57795f20
commit 45a5dda367
3 changed files with 15 additions and 9 deletions

View 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

View 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

View File

@ -11,6 +11,8 @@
#include "LaTeXFeatures.h"
#include "gettext.h"
using std::ostream;
InsetIndex::InsetIndex(InsetCommandParams const & p, bool)
: InsetCommand(p)
{}