]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
Compile fix gcc 2.95 + stlport
[lyx.git] / src / mathed / math_inset.C
index fd56951bbc118e50b6b87083a5770f9aad43c82e..0d25b777168dfba54a2811d7d8a1aa580f14a6aa 100644 (file)
@@ -21,12 +21,6 @@ using std::ostream;
 using std::endl;
 
 
-MathInset::size_type MathInset::nargs() const
-{
-       return 0;
-}
-
-
 MathArray dummyCell;
 
 MathArray & MathInset::cell(idx_type)
@@ -43,85 +37,10 @@ MathArray const & MathInset::cell(idx_type) const
 }
 
 
-MathInset::idx_type MathInset::index(row_type row, col_type col) const
-{
-       if (row != 0)
-               lyxerr << "illegal row: " << row << endl;
-       if (col != 0)
-               lyxerr << "illegal col: " << col << endl;
-       return 0;
-}
-
 void MathInset::substitute(MathMacro const &)
 {}
 
 
-bool MathInset::idxNext(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxRight(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxPrev(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxLeft(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxUpDown(BufferView &, bool, int) const
-{
-       return false;
-}
-
-
-bool MathInset::idxUpDown2(BufferView &, bool, int) const
-{
-       return false;
-}
-
-
-bool MathInset::idxFirst(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxLast(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxHome(BufferView &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxEnd(BufferView &) const
-{
-       return false;
-}
-
-
-void MathInset::getScreenPos(idx_type, pos_type, int & x, int & y) const
-{
-       lyxerr << "MathInset::getScreenPos() called directly!" << endl;
-       x = y = 0;
-}
-
 
 void MathInset::dump() const
 {
@@ -132,12 +51,6 @@ void MathInset::dump() const
 }
 
 
-bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const
-{
-       return from <= idx && idx <= to;
-}
-
-
 void MathInset::drawSelection(PainterInfo &,
        idx_type, pos_type, idx_type, pos_type) const
 {
@@ -210,24 +123,6 @@ void MathInset::mathmlize(MathMLStream & os) const
 }
 
 
-int MathInset::plaintext(std::ostream &, OutputParams const &) const
-{
-       return 0;
-}
-
-
-int MathInset::linuxdoc(std::ostream &, OutputParams const &) const
-{
-       return 0;
-}
-
-
-int MathInset::docbook(std::ostream &, OutputParams const &) const
-{
-       return 0;
-}
-
-
 string const & MathInset::getType() const
 {
        static string const t("none");