diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-06-15 22:24:55 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-06-18 21:11:57 +0200 |
commit | b9ec99ba26e78b9f47bf22a436da1dd0d4aa797b (patch) | |
tree | 3f47e947a56651109dac8e7d3121e0afba03bde0 | |
parent | 08c1acee8083fb2dcc134786b59115a392cd92dd (diff) |
Fix typos
Change-Id: If28e198b8e1a26660e07dce49db66a651de43d3f
Reviewed-on: https://gerrit.libreoffice.org/38850
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | svx/source/dialog/docrecovery.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/xml/xmlithlp.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/file/prov.cxx | 2 | ||||
-rw-r--r-- | vcl/qa/cppunit/pdfexport/pdfexport.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/style/bordrhdl.cxx | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index 58f613d41480..1aa77acce4df 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -821,7 +821,7 @@ void RecovDocList::InitEntry(SvTreeListEntry* pEntry, SvLBoxButtonKind eButtonKind) { SvTabListBox::InitEntry(pEntry, rText, rImage1, rImage2, eButtonKind); - DBG_ASSERT( TabCount() == 2, "*RecovDocList::InitEntry(): structure missmatch" ); + DBG_ASSERT( TabCount() == 2, "*RecovDocList::InitEntry(): structure mismatch" ); SvLBoxString& rCol = static_cast<SvLBoxString&>(pEntry->GetItem(2)); pEntry->ReplaceItem(o3tl::make_unique<RecovDocListEntry>(rCol.GetText()), 2); diff --git a/sw/source/filter/xml/xmlithlp.cxx b/sw/source/filter/xml/xmlithlp.cxx index d1e46fd31ad0..0315e204dced 100644 --- a/sw/source/filter/xml/xmlithlp.cxx +++ b/sw/source/filter/xml/xmlithlp.cxx @@ -139,7 +139,7 @@ bool sw_frmitems_parseXMLBorder( const OUString& rValue, } else { - // missformed + // misformed return false; } } diff --git a/ucb/source/ucp/file/prov.cxx b/ucb/source/ucp/file/prov.cxx index cd0d4b9e272f..82c2f7b9cf7f 100644 --- a/ucb/source/ucp/file/prov.cxx +++ b/ucb/source/ucp/file/prov.cxx @@ -462,7 +462,7 @@ sal_Int32 SAL_CALL FileProvider::getFileProviderLocality( const OUString& BaseURL ) { // If the base URL is a 'file' URL, return 10 (very 'local'), otherwise - // return -1 (missmatch). What is missing is a fast comparison to ASCII, + // return -1 (mismatch). What is missing is a fast comparison to ASCII, // ignoring case: return BaseURL.getLength() >= 5 && (BaseURL[0] == 'F' || BaseURL[0] == 'f') diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx b/vcl/qa/cppunit/pdfexport/pdfexport.cxx index d8ef29fe0ba2..3ded9b210f8b 100644 --- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx +++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx @@ -631,7 +631,7 @@ void PdfExportTest::testTdf99680() // and ensure their amount is equal size_t nSaveCount = std::count(pStart, pEnd, 'q'); size_t nRestoreCount = std::count(pStart, pEnd, 'Q'); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Save/restore graphic state operators count mistmatch!", nSaveCount, nRestoreCount); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Save/restore graphic state operators count mismatch!", nSaveCount, nRestoreCount); } void PdfExportTest::testTdf99680_2() @@ -670,7 +670,7 @@ void PdfExportTest::testTdf99680_2() // and ensure their amount is equal size_t nSaveCount = std::count(pStart, pEnd, 'q'); size_t nRestoreCount = std::count(pStart, pEnd, 'Q'); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Save/restore graphic state operators count mistmatch!", nSaveCount, nRestoreCount); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Save/restore graphic state operators count mismatch!", nSaveCount, nRestoreCount); } } diff --git a/xmloff/source/style/bordrhdl.cxx b/xmloff/source/style/bordrhdl.cxx index 3efaee4a0417..eab6e84a370d 100644 --- a/xmloff/source/style/bordrhdl.cxx +++ b/xmloff/source/style/bordrhdl.cxx @@ -216,7 +216,7 @@ bool XMLBorderHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, co } else { - // missformed + // misformed return false; } } |