]> git.lyx.org Git - lyx.git/commitdiff
Fix switch indentation.
authorThibaut Cuvelier <tcuvelier@lyx.org>
Sat, 28 Sep 2024 14:40:36 +0000 (16:40 +0200)
committerThibaut Cuvelier <tcuvelier@lyx.org>
Sat, 28 Sep 2024 14:50:29 +0000 (16:50 +0200)
src/mathed/InsetMathChar.cpp

index 82d0b63f1eee61d06a43430fd6715272ac00e79a..ebc1644af541758e7e418cf60cde23f54d6a3f0c 100644 (file)
@@ -236,14 +236,14 @@ void InsetMathChar::mathmlize(MathMLStream & ms) const
 {
        std::string entity;
        switch (char_) {
-               case '<': entity = "&lt;"; break;
-               case '>': entity = "&gt;"; break;
-               case '&': entity = "&amp;"; break;
-               case ' ': {
-                       ms << from_ascii("&#0160;");
-                       return;
-               }
-               default: break;
+       case '<': entity = "&lt;"; break;
+       case '>': entity = "&gt;"; break;
+       case '&': entity = "&amp;"; break;
+       case ' ': {
+               ms << from_ascii("&#0160;");
+               return;
+       }
+       default: break;
        }
 
        if (ms.inText()) {