]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_charinset.C
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_charinset.C
index 417078bd6d738a268ac5eff17ffe0344f566fdd7..329b68caa0653b4adfbb360f8ed75b18b16017e6 100644 (file)
@@ -1,3 +1,5 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -28,7 +30,7 @@ MathCharInset::MathCharInset(char c, MathTextCodes t)
 }
 
 
-MathTextCodes MathCharInset::nativeCode(char c) const
+MathTextCodes MathCharInset::nativeCode(char c)
 {
        if (isalpha(c))
                return LM_TC_VAR;
@@ -96,9 +98,9 @@ void MathCharInset::writeRaw(std::ostream & os) const
 
 void MathCharInset::write(WriteStream & os) const
 {
-       writeHeader(os.os);
-       writeRaw(os.os);
-       writeTrailer(os.os);
+       writeHeader(os.os());
+       writeRaw(os.os());
+       writeTrailer(os.os());
 }