From cdb91bc50b3443186295dbc40ba9e486d34e777d Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Thu, 19 Jul 2007 06:21:28 +0000 Subject: [PATCH] const fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19129 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/controllers/ControlTabular.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/controllers/ControlTabular.cpp b/src/frontends/controllers/ControlTabular.cpp index 76e3f86abf..4a2bec268a 100644 --- a/src/frontends/controllers/ControlTabular.cpp +++ b/src/frontends/controllers/ControlTabular.cpp @@ -39,7 +39,7 @@ bool ControlTabular::initialiseParams(string const & data) // assume that it is "ours" for (int i = cur.depth() - 1; i >= 0; --i) if (cur[i].inset().lyxCode() == Inset::TABULAR_CODE) { - current_inset = static_cast(&cur[i].inset()); + current_inset = static_cast(&cur[i].inset()); active_cell_ = cur[i].idx(); break; } -- 2.39.2