From 83ce5ac33eeee4a6a31dc8144b455ad01788475a Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Mon, 18 Jul 2005 20:34:55 +0000 Subject: [PATCH] Consistent variable defintions don't need explicit conversion with picky compilers... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10335 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/text2.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text2.C b/src/text2.C index 4d88d64e22..87310fe7ff 100644 --- a/src/text2.C +++ b/src/text2.C @@ -868,7 +868,7 @@ pos_type LyXText::getColumnNearX(pit_type const pit, #endif x = int(tmpx) + xo; - int const col = c - row.pos(); + pos_type const col = c - row.pos(); if (!c || end == par.size()) return col; -- 2.39.5