lyx_mirror/src/mathed/math_fracbase.C
André Pönitz cbc3add7f2 Wonder why Angus' compiler did not complain about this...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3815 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-22 15:50:50 +00:00

34 lines
549 B
C

#ifdef __GNUG__
#pragma implementation
#endif
#include "math_fracbase.h"
#include "math_mathmlstream.h"
MathFracbaseInset::MathFracbaseInset()
: MathNestInset(2)
{}
bool MathFracbaseInset::idxRight(idx_type &, pos_type &) const
{
return false;
}
bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
{
return false;
}
bool MathFracbaseInset::idxUpDown(idx_type & idx, bool up) const
{
MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
if (idx == target)
return false;
idx = target;
return true;
}