mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-15 12:41:32 +00:00
* InsetMathNest::cell(): inlined because of profile.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17895 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
db36eae4c0
commit
c9dffa27a2
@ -86,18 +86,6 @@ InsetMath::idx_type InsetMathNest::nargs() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MathArray & InsetMathNest::cell(idx_type i)
|
|
||||||
{
|
|
||||||
return cells_[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
MathArray const & InsetMathNest::cell(idx_type i) const
|
|
||||||
{
|
|
||||||
return cells_[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void InsetMathNest::cursorPos(BufferView const & bv,
|
void InsetMathNest::cursorPos(BufferView const & bv,
|
||||||
CursorSlice const & sl, bool /*boundary*/,
|
CursorSlice const & sl, bool /*boundary*/,
|
||||||
int & x, int & y) const
|
int & x, int & y) const
|
||||||
|
@ -74,10 +74,12 @@ public:
|
|||||||
/// get notification when the cursor leaves this inset
|
/// get notification when the cursor leaves this inset
|
||||||
bool notifyCursorLeaves(LCursor & cur);
|
bool notifyCursorLeaves(LCursor & cur);
|
||||||
|
|
||||||
/// direct access to the cell
|
/// direct access to the cell.
|
||||||
MathArray & cell(idx_type);
|
/// inlined because shows in profile.
|
||||||
/// direct access to the cell
|
//@{
|
||||||
MathArray const & cell(idx_type) const;
|
MathArray & cell(idx_type i) { return cells_[i]; }
|
||||||
|
MathArray const & cell(idx_type i) const { return cells_[i]; }
|
||||||
|
//@}
|
||||||
|
|
||||||
/// can we move into this cell (see macroarg.h)
|
/// can we move into this cell (see macroarg.h)
|
||||||
bool isActive() const;
|
bool isActive() const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user