Fix typos
Change-Id: I156afb90e159b6e13cf304ac8f6ff9274cb2c7ec Reviewed-on: https://gerrit.libreoffice.org/53641 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
committed by
Julien Nabet
parent
5fcc7a6b48
commit
22a34b3b7a
@@ -119,7 +119,7 @@ public class TMutableGridDataModel
|
|||||||
: ( row == insertionPos )
|
: ( row == insertionPos )
|
||||||
? inbetweenRow
|
? inbetweenRow
|
||||||
: m_rowValues[ row - 1 ];
|
: m_rowValues[ row - 1 ];
|
||||||
assertArrayEquals( "row number " + row + " has wrong content content after inserting a row",
|
assertArrayEquals( "row number " + row + " has wrong content after inserting a row",
|
||||||
expectedRowData, actualRowData );
|
expectedRowData, actualRowData );
|
||||||
|
|
||||||
final Object actualHeading = m_dataModel.getRowHeading(row);
|
final Object actualHeading = m_dataModel.getRowHeading(row);
|
||||||
@@ -188,7 +188,7 @@ public class TMutableGridDataModel
|
|||||||
: ( row >= insertionPos ) && ( row < insertionPos + insertedRowCount )
|
: ( row >= insertionPos ) && ( row < insertionPos + insertedRowCount )
|
||||||
? rowData[ row - insertionPos ]
|
? rowData[ row - insertionPos ]
|
||||||
: m_rowValues[ row - insertedRowCount ];
|
: m_rowValues[ row - insertedRowCount ];
|
||||||
assertArrayEquals( "row number " + row + " has wrong content content after inserting multiple rows",
|
assertArrayEquals( "row number " + row + " has wrong content after inserting multiple rows",
|
||||||
expectedRowData, actualRowData );
|
expectedRowData, actualRowData );
|
||||||
|
|
||||||
final Object actualHeading = m_dataModel.getRowHeading(row);
|
final Object actualHeading = m_dataModel.getRowHeading(row);
|
||||||
|
@@ -47,7 +47,7 @@ using namespace com::sun::star;
|
|||||||
//cppunit calls instantiates a new TextFixture for each test and calls setUp
|
//cppunit calls instantiates a new TextFixture for each test and calls setUp
|
||||||
//and tearDown on that for every test in a fixture
|
//and tearDown on that for every test in a fixture
|
||||||
|
|
||||||
//We basically need to call dispose on our root component context context to
|
//We basically need to call dispose on our root component context to
|
||||||
//shut down cleanly in the right order.
|
//shut down cleanly in the right order.
|
||||||
|
|
||||||
//But we can't setup and tear down the root component context for
|
//But we can't setup and tear down the root component context for
|
||||||
|
Reference in New Issue
Block a user