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:
Vincent van Ravesteijn 2009-12-07 01:28:14 +00:00
parent 5280ae1609
commit e6d1759340
3 changed files with 2 additions and 3 deletions

View File

@ -504,7 +504,6 @@
<zorder>infoML</zorder>
<zorder>styleGB</zorder>
<zorder>groupBox</zorder>
<zorder></zorder>
</widget>
<tabstops>
<tabstop>availableLV</tabstop>

View File

@ -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 << ">";
}

View File

@ -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();