summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport6.cxx4
-rw-r--r--sw/source/filter/docx/swdocxreader.cxx4
-rw-r--r--sw/source/filter/inc/msfilter.hxx4
-rw-r--r--sw/source/filter/ww8/wrtww8gr.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par.cxx4
-rw-r--r--sw/source/filter/xml/xmlimp.cxx8
6 files changed, 13 insertions, 13 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx
index 2a2a82df7b74..653d4949863f 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx
@@ -840,7 +840,7 @@ DECLARE_OOXMLEXPORT_TEST(testAlignForShape,"Shape.docx")
DECLARE_OOXMLEXPORT_TEST(testLineStyle_DashType, "LineStyle_DashType.docx")
{
/* DOCX contatining Shape with LineStyle as Dash Type should get preserved inside
- * an XMl tag <a:prstDash> with value "dash", "sysDot", "lgDot", etc.
+ * an XML tag <a:prstDash> with value "dash", "sysDot", "lgDot", etc.
*/
xmlDocPtr pXmlDoc = parseExport("word/document.xml");
if (!pXmlDoc)
@@ -942,7 +942,7 @@ DECLARE_OOXMLEXPORT_TEST(testExtentValue, "fdo74605.docx")
}
// part of tdf#93676, word gives the frame in the exported .docx a huge height,
-// because its exported with 255% height percentage from a 255 HeightPercent
+// because it's exported with 255% height percentage from a 255 HeightPercent
// settings, but 255 is a special flag that the value is synced to the
// other dimension.
DECLARE_OOXMLEXPORT_TEST(testSyncedRelativePercent, "tdf93676-1.odt")
diff --git a/sw/source/filter/docx/swdocxreader.cxx b/sw/source/filter/docx/swdocxreader.cxx
index d9f16f087b76..b2122a2f6c4d 100644
--- a/sw/source/filter/docx/swdocxreader.cxx
+++ b/sw/source/filter/docx/swdocxreader.cxx
@@ -74,8 +74,8 @@ ErrCode SwDOCXReader::Read(SwDoc& rDoc, const OUString& /* rBaseURL */, SwPaM& r
uno::Reference<io::XStream> xStream(new utl::OStreamWrapper(*m_pMedium->GetInStream()));
//SetLoading hack because the document properties will be re-initted
- //by the xml filter and during the init, while its considered uninitialized,
- //setting a property will inform the document its modified, which attempts
+ //by the xml filter and during the init, while it's considered uninitialized,
+ //setting a property will inform the document it's modified, which attempts
//to update the properties, which throws cause the properties are uninitialized
pDocShell->SetLoading(SfxLoadedFlags::NONE);
diff --git a/sw/source/filter/inc/msfilter.hxx b/sw/source/filter/inc/msfilter.hxx
index 2a6c9efff0b2..3847af4523f6 100644
--- a/sw/source/filter/inc/msfilter.hxx
+++ b/sw/source/filter/inc/msfilter.hxx
@@ -144,7 +144,7 @@ namespace sw
class ParaStyleMapper
{
private:
- //I hate these things stupid pImpl things, but its warranted here
+ //I hate these things stupid pImpl things, but it's warranted here
std::unique_ptr<::myImplHelpers::StyleMapperImpl<SwTextFormatColl> > mpImpl;
public:
explicit ParaStyleMapper(SwDoc &rDoc);
@@ -201,7 +201,7 @@ namespace sw
class CharStyleMapper
{
private:
- //I hate these things stupid pImpl things, but its warranted here
+ //I hate these things stupid pImpl things, but it's warranted here
std::unique_ptr<::myImplHelpers::StyleMapperImpl<SwCharFormat>> mpImpl;
public:
explicit CharStyleMapper(SwDoc &rDoc);
diff --git a/sw/source/filter/ww8/wrtww8gr.cxx b/sw/source/filter/ww8/wrtww8gr.cxx
index 2b9dc6a21358..61d9ad960a27 100644
--- a/sw/source/filter/ww8/wrtww8gr.cxx
+++ b/sw/source/filter/ww8/wrtww8gr.cxx
@@ -844,7 +844,7 @@ void SwWW8WrGrf::WriteGraphicNode(SvStream& rStrm, const GraphicDetails &rItem)
what word does the escher export should contain an anchored to
character element which is drawn over this dummy and the whole
shebang surrounded with a SHAPE field. This isn't *my* hack :-),
- its what word does.
+ it's what word does.
*/
{
WritePICFHeader(rStrm, rFly, 0x64, nWidth, nHeight);
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index d5b8c244f9ee..11712b8520d6 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -2785,7 +2785,7 @@ rtl_TextEncoding SwWW8ImplReader::GetCharSetFromLanguage()
This is a bit tentative, more might be required if the concept is correct.
When later version of word write older 6/95 documents the charset is
- correctly set in the character runs involved, so its hard to reproduce
+ correctly set in the character runs involved, so it's hard to reproduce
documents that require this to be sure of the process involved.
*/
const SvxLanguageItem *pLang = static_cast<const SvxLanguageItem*>(GetFormatAttr(RES_CHRATR_LANGUAGE));
@@ -2803,7 +2803,7 @@ rtl_TextEncoding SwWW8ImplReader::GetCJKCharSetFromLanguage()
This is a bit tentative, more might be required if the concept is correct.
When later version of word write older 6/95 documents the charset is
- correctly set in the character runs involved, so its hard to reproduce
+ correctly set in the character runs involved, so it's hard to reproduce
documents that require this to be sure of the process involved.
*/
const SvxLanguageItem *pLang = static_cast<const SvxLanguageItem*>(GetFormatAttr(RES_CHRATR_CJK_LANGUAGE));
diff --git a/sw/source/filter/xml/xmlimp.cxx b/sw/source/filter/xml/xmlimp.cxx
index 26fdcf23934f..ca87bb3d13aa 100644
--- a/sw/source/filter/xml/xmlimp.cxx
+++ b/sw/source/filter/xml/xmlimp.cxx
@@ -1846,8 +1846,8 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool TestImportFODT(SvStream &rStream)
uno::Reference<document::XFilter> xFilter(xInterface, uno::UNO_QUERY_THROW);
//SetLoading hack because the document properties will be re-initted
- //by the xml filter and during the init, while its considered uninitialized,
- //setting a property will inform the document its modified, which attempts
+ //by the xml filter and during the init, while it's considered uninitialized,
+ //setting a property will inform the document it's modified, which attempts
//to update the properties, which throws cause the properties are uninitialized
xDocSh->SetLoading(SfxLoadedFlags::NONE);
bool ret = xFilter->filter(aArgs);
@@ -1880,8 +1880,8 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool TestImportDOCX(SvStream &rStream)
xImporter->setTargetDocument(xModel);
//SetLoading hack because the document properties will be re-initted
- //by the xml filter and during the init, while its considered uninitialized,
- //setting a property will inform the document its modified, which attempts
+ //by the xml filter and during the init, while it's considered uninitialized,
+ //setting a property will inform the document it's modified, which attempts
//to update the properties, which throws cause the properties are uninitialized
xDocSh->SetLoading(SfxLoadedFlags::NONE);
bool ret = false;