Move #include "funcrequest.h" out of the header file.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7655 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-09-04 01:01:13 +00:00
parent 9475f44966
commit a529232113
4 changed files with 17 additions and 9 deletions

View File

@ -1,3 +1,9 @@
2003-09-04 Angus Leeming <leeming@lyx.org>
* insetcollapsable.h:
* insetbranch.C:
* insetnote.C: move #include "funcrequest.h" out of the header file.
2003-09-03 Angus Leeming <leeming@lyx.org>
* insetexternal.C (updateExternal):

View File

@ -18,6 +18,7 @@
#include "language.h"
#include "buffer.h"
#include "BufferView.h"
#include "funcrequest.h"
#include "LaTeXFeatures.h"
#include "latexrunparams.h"
#include "lyxlex.h"

View File

@ -17,7 +17,6 @@
#include "inset.h"
#include "insettext.h"
#include "lyxfont.h"
#include "funcrequest.h" // for adjustCommand
#include "LColor.h"
#include "box.h"

View File

@ -12,21 +12,23 @@
#include <config.h>
#include "Lsstream.h"
#include "insetnote.h"
#include "metricsinfo.h"
#include "gettext.h"
#include "lyxfont.h"
#include "language.h"
#include "insettext.h"
#include "buffer.h"
#include "BufferView.h"
#include "debug.h"
#include "funcrequest.h"
#include "gettext.h"
#include "language.h"
#include "lyxfont.h"
#include "lyxlex.h"
#include "lyxtext.h"
#include "insets/insettext.h"
#include "metricsinfo.h"
#include "support/LOstream.h"
#include "support/lstrings.h"
#include "debug.h"
#include "Lsstream.h"
using std::ostream;
using std::auto_ptr;