From cbc3add7f2ac99c2277bf8f1274f9f94d4234194 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 22 Mar 2002 15:50:50 +0000 Subject: [PATCH] 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 --- src/mathed/math_fracbase.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/math_fracbase.C b/src/mathed/math_fracbase.C index 5889f0773e..bfc2b1de04 100644 --- a/src/mathed/math_fracbase.C +++ b/src/mathed/math_fracbase.C @@ -25,7 +25,7 @@ bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const bool MathFracbaseInset::idxUpDown(idx_type & idx, bool up) const { - int target = !up; // up ? 0 : 1, since upper cell has idx 0 + MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0 if (idx == target) return false; idx = target; -- 2.39.5