diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-11-05 21:54:29 +0100 |
---|---|---|
committer | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2017-11-06 11:58:36 +0100 |
commit | f69be03d72fbaa535adc8b06475d2806283b79ab (patch) | |
tree | 7b624a08f0275aeae6c6e2c5d8ea306ef3dfd3be | |
parent | 315bf654595fc621c2beb8bc332df419ff387b44 (diff) |
Fix typos
Change-Id: I745ec997df4401c3a87963a36c43add4cfeffe04
Reviewed-on: https://gerrit.libreoffice.org/44334
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | sc/qa/unit/ucalc_formula.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 5e566913189c..e1ede555fd5c 100644 --- a/configure.ac +++ b/configure.ac @@ -12177,7 +12177,7 @@ if test "$enable_mpl_subset" = "yes"; then AC_MSG_ERROR([need to --disable-report-builder - extended database report builder.]) fi if test "x$enable_postgresql_sdbc" != "xno"; then - AC_MSG_ERROR([need to --disable-postgresql-sdbc - the postgress database backend.]) + AC_MSG_ERROR([need to --disable-postgresql-sdbc - the PostgreSQL database backend.]) fi if test "$enable_lotuswordpro" = "yes"; then AC_MSG_ERROR([need to --disable-lotuswordpro - a Lotus Word Pro file format import filter.]) diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx index 22d76cac6c1c..35e8831195a0 100644 --- a/sc/qa/unit/ucalc_formula.cxx +++ b/sc/qa/unit/ucalc_formula.cxx @@ -4864,7 +4864,7 @@ void Test::testFuncVLOOKUP() // Clear the sheet and start over. clearSheet(m_pDoc, 0); - // Lookup on sorted data intersparsed with empty cells. + // Lookup on sorted data interspersed with empty cells. // A1:B8 is the search range. m_pDoc->SetValue(ScAddress(0,2,0), 1.0); @@ -8405,7 +8405,7 @@ void Test::testInsertColCellStoreEventSwap() m_pDoc->SetString( 1,0,0, "=A1" ); // B1 // Insert column left of B m_pDoc->InsertCol( ScRange(1,0,0, 1,MAXROW,0)); - ScAddress aPos(2,0,0); // C1, new formula postion + ScAddress aPos(2,0,0); // C1, new formula position CPPUNIT_ASSERT_EQUAL_MESSAGE( "Should be formula cell having value", 1.0, m_pDoc->GetValue(aPos)); // After having swapped in an empty column, editing or adding a formula // cell has to use the correct store context. To test this, |