]> git.lyx.org Git - features.git/commitdiff
lil' cleanup
authorEdwin Leuven <e.leuven@gmail.com>
Tue, 4 Sep 2007 18:08:51 +0000 (18:08 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Tue, 4 Sep 2007 18:08:51 +0000 (18:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20042 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiTabular.cpp

index 9134c6791e561909e58c4f57730266f67439be6f..9a6650b3ef9a2689a8c45406142146c6fda72b38 100644 (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)));