mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
6c13215907
remove unneeded functions git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3198 a592a061-630c-0410-9148-cb99ea01b6c8
42 lines
564 B
C
42 lines
564 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::idxUp(idx_type & idx) const
|
|
{
|
|
if (idx == 0)
|
|
return false;
|
|
idx = 0;
|
|
return true;
|
|
}
|
|
|
|
|
|
bool MathFracbaseInset::idxDown(idx_type & idx) const
|
|
{
|
|
if (idx == 1)
|
|
return false;
|
|
idx = 1;
|
|
return true;
|
|
}
|