]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.C
fix reading the author field.
[lyx.git] / src / Spacing.C
index 776979052143bf4097566c7705cab293548c45eb..695398b6ff8bae92203f6b735b6de9e336fb82b3 100644 (file)
  */
 
 #include <config.h>
-#include <string>
 
 #include "Spacing.h"
 
-#include "support/std_sstream.h"
+#include <sstream>
+#include <string>
 
 using std::ios;
 using std::istringstream;
@@ -72,9 +72,9 @@ void Spacing::writeFile(ostream & os, bool para) const
                os.setf(ios::showpoint|ios::fixed);
                os.precision(2);
                os << cmd << spacing_string[getSpace()]
-                  << ' ' << getValue() << " \n";
+                  << ' ' << getValue() << "\n";
        } else {
-               os << cmd << spacing_string[getSpace()] << " \n";
+               os << cmd << spacing_string[getSpace()] << "\n";
        }
 }