mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
Fix switch indentation.
This commit is contained in:
parent
cb88a362ea
commit
a06528ee2a
@ -236,14 +236,14 @@ void InsetMathChar::mathmlize(MathMLStream & ms) const
|
||||
{
|
||||
std::string entity;
|
||||
switch (char_) {
|
||||
case '<': entity = "<"; break;
|
||||
case '>': entity = ">"; break;
|
||||
case '&': entity = "&"; break;
|
||||
case ' ': {
|
||||
ms << from_ascii(" ");
|
||||
return;
|
||||
}
|
||||
default: break;
|
||||
case '<': entity = "<"; break;
|
||||
case '>': entity = ">"; break;
|
||||
case '&': entity = "&"; break;
|
||||
case ' ': {
|
||||
ms << from_ascii(" ");
|
||||
return;
|
||||
}
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (ms.inText()) {
|
||||
|
Loading…
Reference in New Issue
Block a user