compile fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3219 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-12-15 16:24:12 +00:00
parent c0fc732905
commit 1f4e0de8a2
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-12-15 Lars Gullik Bjønnes <larsbj@birdstep.com>
* FormToc.C: using std::endl
2001-12-14 John Levon <moz@compsoc.man.ac.uk>
* FormToc.C: fix crash when no entries, and

View File

@ -12,21 +12,24 @@
*/
#include <config.h>
#include <vector>
#ifdef __GNUG__
#pragma implementation
#endif
#include "FormToc.h"
#include "xformsBC.h"
#include "ControlToc.h"
#include "FormToc.h"
#include "form_toc.h"
#include "helper_funcs.h" // getStringFromVector
#include "support/lstrings.h" // frontStrip, strip
#include "debug.h"
#include "gettext.h"
#include <vector>
using std::endl;
typedef FormCB<ControlToc, FormDB<FD_form_toc> > base_class;