mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Headers cleanup from Angus
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@901 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ba0e59d614
commit
86db656d55
@ -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.
|
||||
|
@ -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"
|
||||
|
@ -18,13 +18,19 @@
|
||||
#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.
|
||||
|
@ -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"
|
||||
|
@ -18,13 +18,13 @@
|
||||
#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.
|
||||
|
Loading…
Reference in New Issue
Block a user