]> git.lyx.org Git - features.git/commitdiff
Move some more #includes out of the header files.
authorAngus Leeming <leeming@lyx.org>
Thu, 4 Sep 2003 01:18:42 +0000 (01:18 +0000)
committerAngus Leeming <leeming@lyx.org>
Thu, 4 Sep 2003 01:18:42 +0000 (01:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7656 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/ChangeLog
src/insets/insetfoot.h
src/insets/insettabular.h
src/insets/insettoc.C
src/insets/insettoc.h

index a23c7006d6b2fea4fc2549e7691cc1a1248df76b..a44fa7c266ea2d7ec8315b5d8e8ffd75997dcd26 100644 (file)
@@ -1,5 +1,9 @@
 2003-09-04  Angus Leeming  <leeming@lyx.org>
 
+       * insetfoot.h: move #include "LaTeXFeatures.h" out of the header file.
+       * insettabular.h: move #include "FuncStatus.h" out of the header file.
+       * insettoc.[Ch]: move #include "metricsinfo.h" out of the header file.
+
        * insetcollapsable.h: 
        * insetbranch.C: 
        * insetnote.C: move #include "funcrequest.h" out of the header file.
index 600ad8bcd2dc74211b36a56a158dbe6034823218..d6acd653f26b3d5408060f5cfc79b7e304aa4a73 100644 (file)
@@ -13,8 +13,6 @@
 #ifndef INSETFOOT_H
 #define INSETFOOT_H
 
-
-#include "LaTeXFeatures.h"
 #include "insetfootlike.h"
 
 /** The footnote inset
index f3f6781e7120f35dcc35f1d15190b10e9b7b7b4c..7e2f71b43e8dd67eb8678cbec2df3f9c09d3e306 100644 (file)
@@ -48,9 +48,9 @@
 #include "inset.h"
 #include "tabular.h"
 #include "LString.h"
-#include "FuncStatus.h"
 #include "frontends/mouse_state.h"
 
+class FuncStatus;
 class LyXLex;
 class Painter;
 class BufferView;
index 53cb0189c0f39327a5f760ecdae76152b5b9827a..f68649a009befbb9f9b00624e686dc66ad1a7ef0 100644 (file)
@@ -9,15 +9,17 @@
  */
 #include <config.h>
 
-
-#include "gettext.h"
 #include "insettoc.h"
-#include "funcrequest.h"
+
 #include "BufferView.h"
-#include "frontends/LyXView.h"
-#include "frontends/Dialogs.h"
 #include "debug.h"
+#include "funcrequest.h"
+#include "gettext.h"
+#include "metricsinfo.h"
 #include "toc.h"
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+
 
 using std::vector;
 using std::ostream;
index 77ce3e338ea216c3321c24b046dd3434fe279fb7..81a1aaa75ab3208533a9df43a9927826e3049e44 100644 (file)
@@ -14,7 +14,9 @@
 
 
 #include "insetcommand.h"
-#include "metricsinfo.h"
+
+class MetricsInfo;
+
 
 /** Used to insert table of contents
  */