Fixed GetCursorPos parameters

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@829 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2000-06-22 10:43:59 +00:00
parent 87207b1939
commit 64d9f30605
2 changed files with 2 additions and 2 deletions

View File

@ -749,7 +749,7 @@ void InsetTabular::calculate_width_of_cells(BufferView * bv,
}
void InsetTabular::GetCursorPos(int & x, int & y) const
void InsetTabular::GetCursorPos(BufferView *, int & x, int & y) const
{
x = cursor.x() - top_x;
y = cursor.y();

View File

@ -132,7 +132,7 @@ public:
///
Inset::Code LyxCode() const { return Inset::TABULAR_CODE; }
///
void GetCursorPos(int & x, int & y) const;
void GetCursorPos(BufferView *, int & x, int & y) const;
///
void ToggleInsetCursor(BufferView *);
///