From 8e3d425230a343c26fd849db4a42c0b1f7edc0e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 14 Jan 2004 16:20:45 +0000 Subject: [PATCH] remove unneeded inset() member function git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8345 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_iterator.C | 11 ----------- src/mathed/math_iterator.h | 4 ---- 2 files changed, 15 deletions(-) diff --git a/src/mathed/math_iterator.C b/src/mathed/math_iterator.C index e4e1c65731..180de4602f 100644 --- a/src/mathed/math_iterator.C +++ b/src/mathed/math_iterator.C @@ -27,17 +27,6 @@ MathIterator::MathIterator(MathInset * p) } -MathInset const * MathIterator::inset() const -{ - return back().asMathInset(); -} - - -MathInset * MathIterator::inset() -{ - return back().asMathInset(); -} - MathArray const & MathIterator::cell() const { diff --git a/src/mathed/math_iterator.h b/src/mathed/math_iterator.h index 259e190f60..c54c61808d 100644 --- a/src/mathed/math_iterator.h +++ b/src/mathed/math_iterator.h @@ -50,10 +50,6 @@ public: void operator++(); /// move on several steps void jump(difference_type); - /// read access to top most inset - MathInset const * inset() const; - /// read access to top most inset - MathInset * inset(); /// helper for iend void goEnd(); /// read access to top most item