]> git.lyx.org Git - features.git/commitdiff
Headers cleanup from Angus
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 19 Jul 2000 15:54:35 +0000 (15:54 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 19 Jul 2000 15:54:35 +0000 (15:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@901 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/frontends/xforms/FormPreferences.C
src/frontends/xforms/FormPreferences.h
src/frontends/xforms/FormPrint.C
src/frontends/xforms/FormPrint.h

index 76487df190512e3929810ea4fe737fe99411e45c..5601dc540d663a5a47f9e6a5bb1c1cd04b61320b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2000-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
 
+       * src/frontends/xforms/FormPrint.[Ch] : moved #include
+       form_print.h out of the header file. Replaced with forward
+       declarations of the relevant struct.
+
+       * src/frontends/xforms/FormPreferences.[Ch] : ditto for
+       form_preferences.h.
+
        * src/commandtags.h: do not include "debug.h" which does not
        belong there. #include it in some other places because of this
        change. 
index af85d050b7e1c5653e7259d017c6481930700dc2..f16d0244ddbc1ae1b3cb02125fd8c27b09b9e83b 100644 (file)
@@ -8,6 +8,7 @@
 #include FORMS_H_LOCATION
 
 #include "FormPreferences.h"
+#include "form_preferences.h"
 #include "xform_macros.h"
 #include "input_validators.h"
 #include "LyXView.h"
index 5f8a8eba70e0178d23e002929b80bbb282d27ad5..6014914cb0f2e2e32b99bae17b4fc5bf7338a5d8 100644 (file)
 #define FORMPREFERENCES_H
 
 #include "DialogBase.h"
-#include "form_preferences.h"
 #ifdef SIGC_CXX_NAMESPACES
 using SigC::Connection;
 #endif
 
 class LyXView;
 class Dialogs;
+struct FD_form_preferences;
+struct FD_form_bind;
+struct FD_form_misc;
+struct FD_form_screen_fonts;
+struct FD_form_interface_fonts;
+struct FD_form_printer;
+struct FD_form_paths;
 
 /** This class provides an XForms implementation of the FormPreferences Dialog.
     The preferences dialog allows users to set/save their preferences.
index 9371027c49b4515b23a1c90ef75cafb9bd77f033..70894485c563fcd82a75a754493870e27a7a2303 100644 (file)
@@ -8,6 +8,7 @@
 #include FORMS_H_LOCATION
 
 #include "FormPrint.h"
+#include "form_print.h"
 #include "xform_macros.h"
 #include "input_validators.h"
 #include "LyXView.h"
index bba61cd3cbaf4db450825eea36c64788bd9c51ca..f9e2d7b27c70344fda8732fd5b523e8cdbc69e1d 100644 (file)
 #define FORMPRINT_H
 
 #include "DialogBase.h"
-#include "form_print.h"
 #ifdef SIGC_CXX_NAMESPACES
 using SigC::Connection;
 #endif
 
 class LyXView;
 class Dialogs;
+struct FD_form_print;
 
 /** This class provides an XForms implementation of the FormPrint Dialog.
     The print dialog allows users to print their documents.