From f427215caf60d9eaf52d9f6a6002cb42bce7f942 Mon Sep 17 00:00:00 2001 From: Edwin Leuven Date: Tue, 4 Sep 2007 18:08:51 +0000 Subject: [PATCH] lil' cleanup git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20042 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiTabular.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/GuiTabular.cpp b/src/frontends/qt4/GuiTabular.cpp index 9134c6791e..9a6650b3ef 100644 --- a/src/frontends/qt4/GuiTabular.cpp +++ b/src/frontends/qt4/GuiTabular.cpp @@ -627,8 +627,8 @@ void GuiTabular::update_contents() Tabular const & tabular(controller().tabular()); Tabular::idx_type const cell = controller().getActiveCell(); - Tabular::row_type const row(tabular.cellRow(cell)); - Tabular::col_type const col(tabular.cellColumn(cell)); + Tabular::row_type const row = tabular.cellRow(cell); + Tabular::col_type const col = tabular.cellColumn(cell); dialog_->tabularRowED->setText(toqstr(convert(row + 1))); dialog_->tabularColumnED->setText(toqstr(convert(col + 1))); -- 2.39.2