lil' cleanup

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20042 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Edwin Leuven 2007-09-04 18:08:51 +00:00
parent 7b714d0aad
commit f427215caf

View File

@ -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<string>(row + 1)));
dialog_->tabularColumnED->setText(toqstr(convert<string>(col + 1)));