Whitespace; clean up #includes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3819 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-03-25 11:00:17 +00:00
parent 90d707e889
commit 9c628bc4ac
3 changed files with 12 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2002-03-25 Angus Leeming <a.leeming@ic.ac.uk>
* FormParagraph.C (changedParagraph): whitespace.
* xforms_helpers.C: rearrange #includes.
2002-03-22 Angus Leeming <a.leeming@ic.ac.uk>
* FormGraphics.C (input): don't activate the Ok, Apply buttons if the

View File

@ -90,7 +90,6 @@ void FormParagraph::changedParagraph()
if (!accept) {
postWarning(_("Cannot apply paragraph settings to this inset!"));
}
}

View File

@ -8,25 +8,26 @@
#include <config.h>
#include FORMS_H_LOCATION
#include <fstream> // ofstream
#include <vector>
#ifdef __GNUG_
#pragma implementation
#endif
#include "xforms_helpers.h"
#include "lyxlex.h"
#include "gettext.h"
#include "lyxlength.h"
#include "lyxgluelength.h"
#include "support/LAssert.h"
#include "support/FileInfo.h"
#include "support/filetools.h"
#include "support/lstrings.h" // frontStrip, strip
#include <algorithm>
#include <fstream>
#include <vector>
using std::ofstream;
using std::pair;
using std::vector;