From: Lars Gullik Bjønnes Date: Sat, 15 Dec 2001 16:24:12 +0000 (+0000) Subject: compile fix X-Git-Tag: 1.6.10~20163 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1f4e0de8a29c60df49280bca7da60fc895040633;p=lyx.git compile fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3219 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 0dc1b16869..63ab60e8dd 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,7 @@ +2001-12-15 Lars Gullik Bjønnes + + * FormToc.C: using std::endl + 2001-12-14 John Levon * FormToc.C: fix crash when no entries, and diff --git a/src/frontends/xforms/FormToc.C b/src/frontends/xforms/FormToc.C index 97ce6e8d18..c165545e79 100644 --- a/src/frontends/xforms/FormToc.C +++ b/src/frontends/xforms/FormToc.C @@ -12,21 +12,24 @@ */ #include -#include #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 + +using std::endl; + typedef FormCB > base_class;