]> git.lyx.org Git - lyx.git/commitdiff
Whitespace; clean up #includes.
authorAngus Leeming <leeming@lyx.org>
Mon, 25 Mar 2002 11:00:17 +0000 (11:00 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 25 Mar 2002 11:00:17 +0000 (11:00 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3819 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/FormParagraph.C
src/frontends/xforms/xforms_helpers.C

index cf92b7237675e67343ea02804d83ca587f44fa37..9dc43817a80b330b85a38b0389906a2e7eac3f0f 100644 (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
index 87a30e4cda6834d0a62484cee70b967474c978d0..cbf3a03225f9d4b1ed55c92fdaab639389a0f2a1 100644 (file)
@@ -90,7 +90,6 @@ void FormParagraph::changedParagraph()
        if (!accept) {
                postWarning(_("Cannot apply paragraph settings to this inset!"));
        }
-
 }
 
 
index 4872b9b84fd3c50c2faca5fbd50342a2b7e075fb..aec955b472c8116c674a216663c7708576bf77e3 100644 (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;