]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSpace.cpp
Fix #10863 compiler warnings.
[lyx.git] / src / mathed / InsetMathSpace.cpp
index 0adce6ff28e3458b21813ee0c558903c9d102703..88aae1d4a66a85771e783ba88e7aa93b58a561d6 100644 (file)
@@ -75,7 +75,7 @@ SpaceInfo space_info[] = {
 int const nSpace = sizeof(space_info)/sizeof(SpaceInfo);
 int const defaultSpace = 4;
 
-} // anon namespace
+} // namespace
 
 InsetMathSpace::InsetMathSpace()
        : space_(defaultSpace)
@@ -208,14 +208,14 @@ void InsetMathSpace::mathmlize(MathStream & ms) const
                ss << si.width;
                l = ss.str() + "px";
        }
-       
+
        ms << "<mspace";
        if (!l.empty())
                ms << " width=\"" << from_ascii(l) << "\"";
        ms << " />";
 }
 
-       
+
 void InsetMathSpace::htmlize(HtmlStream & ms) const
 {
        SpaceInfo const & si = space_info[space_];
@@ -246,7 +246,7 @@ void InsetMathSpace::htmlize(HtmlStream & ms) const
        case InsetSpaceParams::CUSTOM:
        case InsetSpaceParams::CUSTOM_PROTECTED: {
                string l = length_.asHTMLString();
-               ms << MTag("span", "width='" + l + "'") 
+               ms << MTag("span", "width='" + l + "'")
                   << from_ascii("&nbsp;") << ETag("span");
                break;
        }
@@ -259,7 +259,7 @@ void InsetMathSpace::htmlize(HtmlStream & ms) const
        }
 }
 
-       
+
 void InsetMathSpace::normalize(NormalStream & os) const
 {
        os << "[space " << int(space_) << "] ";