]> git.lyx.org Git - features.git/commitdiff
CitationUI and InsetMathChar:
authorVincent van Ravesteijn <vfr@lyx.org>
Mon, 7 Dec 2009 01:28:14 +0000 (01:28 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Mon, 7 Dec 2009 01:28:14 +0000 (01:28 +0000)
  squeeze warnings

output_xhtml:
  fix whitespace

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32380 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/ui/CitationUi.ui
src/mathed/InsetMathChar.cpp
src/output_xhtml.cpp

index 12dcc3ca12e31dd6af41a889b987b440025fb0c4..d30a029ecda83ed5840f20bfb4720dd4eea93ab1 100644 (file)
   <zorder>infoML</zorder>
   <zorder>styleGB</zorder>
   <zorder>groupBox</zorder>
-  <zorder></zorder>
  </widget>
  <tabstops>
   <tabstop>availableLV</tabstop>
index fe8d43ed28fc4e502c435b05518a6f6c66047c03..8e02c6a92cb5e9ab31d46e1cbbf9e0f778e4fe00 100644 (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 << ">"; 
 }
 
 
index d458c248e541e04f6dba284941f221e044902d0b..27f36db5a05fbea14163b156dbeca398cd49386c 100644 (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();