mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +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;
|
std::string entity;
|
||||||
switch (char_) {
|
switch (char_) {
|
||||||
case '<': entity = "<"; break;
|
case '<': entity = "<"; break;
|
||||||
case '>': entity = ">"; break;
|
case '>': entity = ">"; break;
|
||||||
case '&': entity = "&"; break;
|
case '&': entity = "&"; break;
|
||||||
case ' ': {
|
case ' ': {
|
||||||
ms << from_ascii(" ");
|
ms << from_ascii(" ");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ms.inText()) {
|
if (ms.inText()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user