mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 16:37:28 +00:00
CitationUI and InsetMathChar:
squeeze warnings output_xhtml: fix whitespace git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32380 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5280ae1609
commit
e6d1759340
@ -504,7 +504,6 @@
|
||||
<zorder>infoML</zorder>
|
||||
<zorder>styleGB</zorder>
|
||||
<zorder>groupBox</zorder>
|
||||
<zorder></zorder>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>availableLV</tabstop>
|
||||
|
@ -178,7 +178,7 @@ void InsetMathChar::mathmlize(MathStream & ms) const
|
||||
(isalpha(char_) || Encodings::isMathAlpha(char_))
|
||||
? "mi" : "mo";
|
||||
// we don't use MTag and ETag because we do not want the spacing
|
||||
ms << "<" << type << ">" << char_ << "</" << type << ">";
|
||||
ms << "<" << type << ">" << char(char_) << "</" << type << ">";
|
||||
}
|
||||
|
||||
|
||||
|
@ -310,7 +310,7 @@ XHTMLStream & XHTMLStream::operator<<(CompTag const & tag)
|
||||
}
|
||||
|
||||
|
||||
bool XHTMLStream::isTagOpen(string const & stag)
|
||||
bool XHTMLStream::isTagOpen(string const & stag)
|
||||
{
|
||||
TagStack::const_iterator sit = tag_stack_.begin();
|
||||
TagStack::const_iterator const sen = tag_stack_.end();
|
||||
|
Loading…
x
Reference in New Issue
Block a user