]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_inset.C
index 57605c13bec806c4da389f8d49003f82fa1bc1e7..87af584c5c28098d9a54a4348547f4a58a332f91 100644 (file)
@@ -1,9 +1,9 @@
 /*
  *  File:        math_inset.C
  *  Purpose:     Implementation of insets for mathed
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  Created:     January 1996
- *  Description: 
+ *  Description:
  *
  *  Dependencies: Xlib, XForms
  *
@@ -40,7 +40,7 @@ int MathInset::height() const
 
 ostream & operator<<(ostream & os, MathInset const & inset)
 {
-       WriteStream wi(os, false);
+       WriteStream wi(os, false, false);
        inset.write(wi);
        return os;
 }
@@ -119,13 +119,7 @@ bool MathInset::idxLeft(idx_type &, pos_type &) const
 }
 
 
-bool MathInset::idxUp(idx_type &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxDown(idx_type &) const
+bool MathInset::idxUpDown(idx_type &, bool) const
 {
        return false;
 }
@@ -155,17 +149,10 @@ bool MathInset::idxEnd(idx_type &, pos_type &) const
 }
 
 
-void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit)
-{
-       popit    = false;
-       deleteit = false;
-}
-
-
 void MathInset::normalize(NormalStream & os) const
 {
        os << "[unknown ";
-       WriteStream wi(os.os(), false);
+       WriteStream wi(os.os(), false, true);
        write(wi);
        os << "] ";
 }
@@ -174,7 +161,7 @@ void MathInset::normalize(NormalStream & os) const
 void MathInset::dump() const
 {
        lyxerr << "---------------------------------------------\n";
-       WriteStream wi(lyxerr, false);
+       WriteStream wi(lyxerr, false, true);
        write(wi);
        lyxerr << "\n---------------------------------------------\n";
 }
@@ -206,6 +193,19 @@ void MathInset::draw(Painter &, int, int) const
 }
 
 
+void MathInset::metricsT(TextMetricsInfo const &) const
+{
+       lyxerr << "MathInset::metricsT(Text) called directly!\n";
+}
+
+
+void MathInset::drawT(TextPainter &, int, int) const
+{
+       lyxerr << "MathInset::drawT(Text) called directly!\n";
+}
+
+
+
 void MathInset::write(WriteStream &) const
 {
        lyxerr << "MathInset::write() called directly!\n";