mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
Const.
This commit is contained in:
parent
7779d46920
commit
f6fceea317
@ -1545,7 +1545,7 @@ Inset * TextMetrics::editXY(Cursor & cur, int x, int y,
|
|||||||
void TextMetrics::setCursorFromCoordinates(Cursor & cur, int const x, int const y)
|
void TextMetrics::setCursorFromCoordinates(Cursor & cur, int const x, int const y)
|
||||||
{
|
{
|
||||||
LASSERT(text_ == cur.text(), /**/);
|
LASSERT(text_ == cur.text(), /**/);
|
||||||
pit_type pit = getPitNearY(y);
|
pit_type const pit = getPitNearY(y);
|
||||||
LASSERT(pit != -1, return);
|
LASSERT(pit != -1, return);
|
||||||
|
|
||||||
ParagraphMetrics const & pm = par_metrics_[pit];
|
ParagraphMetrics const & pm = par_metrics_[pit];
|
||||||
|
Loading…
Reference in New Issue
Block a user