]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.C
update no.po
[lyx.git] / src / Spacing.C
index 26ef6edf13d7e17ef48bdf4276a4823adeb9305f..8bc5080f597a8c5f0583bb666b1cd76a33ec85fb 100644 (file)
@@ -70,7 +70,7 @@ 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";
        }
@@ -91,7 +91,7 @@ string const Spacing::writeEnvirBegin() const
        {
                ostringstream ost;
                ost << "\\begin{spacing}{"
-                   << getValue() << "}";
+                   << getValue() << '}';
                return STRCONV(ost.str());
        }
        }