]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExInt.C
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathExInt.C
index b24435205e474b22fcb7334e9b98fac1c1a18944..a349946a7e3704e86df41be646a0f6cb8c0d9a42 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "InsetMathExInt.h"
 #include "MathData.h"
-#include "MathMLStream.h"
+#include "MathStream.h"
 #include "MathStream.h"
 #include "InsetMathSymbol.h"
 #include "debug.h"
 #include <boost/scoped_ptr.hpp>
 
 
+namespace lyx {
+
+
 using std::string;
 using std::auto_ptr;
 using std::endl;
 
 
-InsetMathExInt::InsetMathExInt(string const & name)
+InsetMathExInt::InsetMathExInt(docstring const & name)
        : InsetMathNest(4), symbol_(name)
 {}
 
@@ -41,7 +44,7 @@ auto_ptr<InsetBase> InsetMathExInt::doClone() const
 }
 
 
-void InsetMathExInt::symbol(string const & symbol)
+void InsetMathExInt::symbol(docstring const & symbol)
 {
        symbol_ = symbol;
 }
@@ -125,7 +128,7 @@ void InsetMathExInt::mathematica(MathematicaStream & os) const
 }
 
 
-void InsetMathExInt::mathmlize(MathMLStream & os) const
+void InsetMathExInt::mathmlize(MathStream & os) const
 {
        boost::scoped_ptr<InsetMathSymbol> sym(new InsetMathSymbol(symbol_));
        //if (hasScripts())
@@ -142,3 +145,6 @@ void InsetMathExInt::write(WriteStream &) const
 {
        lyxerr << "should not happen" << endl;
 }
+
+
+} // namespace lyx