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)));