Make use of the new CellReference class

This commit is contained in:
Debao Zhang
2014-03-19 21:34:46 +08:00
parent e037c24a69
commit 76e0bd4e54
16 changed files with 121 additions and 342 deletions
@@ -27,7 +27,7 @@ void CellReferenceTest::test_fromString()
QFETCH(QString, cell);
QFETCH(int, row);
QFETCH(int, col);
CellReference pos = CellReference::fromString(cell);
CellReference pos(cell);
QCOMPARE(pos.row(), row);
QCOMPARE(pos.column(), col);
}