summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-01-07 09:27:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2022-01-07 12:52:39 +0100
commit77611e43241dfe3b6224d792156c8457a0fd93d8 (patch)
tree3950ce4f34a53bf002956366b01b9be2e909bee4 /lotuswordpro
parent71be70b16b37fb3c1b6331ab3581300556ecc7aa (diff)
Objct->Object
Change-Id: I5a69596e65b300bd57fd539fe696f1c064ce555f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128102 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpdrawobj.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpdrawobj.hxx2
-rw-r--r--lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx12
3 files changed, 8 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx b/lotuswordpro/source/filter/lwpdrawobj.cxx
index 5245bfd93ddc..4adb32b7fdd3 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -55,7 +55,7 @@
************************************************************************/
/**
* @file
- * Implementation file of LwpDrawObjcts and associated class like LwpDrawGroup, LwpDrawRectangle
+ * Implementation file of LwpDrawObjects and associated class like LwpDrawGroup, LwpDrawRectangle
* and so on.
*/
#include <osl/thread.h>
diff --git a/lotuswordpro/source/filter/lwpdrawobj.hxx b/lotuswordpro/source/filter/lwpdrawobj.hxx
index e4a8f0efa92d..ab5bba1d7775 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.hxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.hxx
@@ -55,7 +55,7 @@
************************************************************************/
/**
* @file
- * The file declares the LwpDrawObjcts and associated class like LwpDrawGroup, LwpDrawRectangle
+ * The file declares the LwpDrawObjects and associated class like LwpDrawGroup, LwpDrawRectangle
* and so on.
*/
diff --git a/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx b/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx
index 1b73b97a1f4f..1780bf432db4 100644
--- a/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx
+++ b/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx
@@ -309,7 +309,7 @@ XFFrame* LwpSdwGroupLoaderV0102::CreateDrawObject()
m_pStream->ReadUChar(recType);
std::unique_ptr<LwpDrawObj> pDrawObj;
- XFFrame* pRetObjct = nullptr;
+ XFFrame* pRetObject = nullptr;
switch(recType)
{
@@ -371,12 +371,12 @@ XFFrame* LwpSdwGroupLoaderV0102::CreateDrawObject()
// read out the object header
pDrawObj.reset(new LwpDrawGroup(m_pStream));
- pRetObjct = CreateDrawGroupObject();
+ pRetObject = CreateDrawGroupObject();
- if (pRetObjct)
+ if (pRetObject)
{
// set anchor type
- pRetObjct->SetAnchorType(enumXFAnchorFrame);
+ pRetObject->SetAnchorType(enumXFAnchorFrame);
}
break;
}
@@ -396,10 +396,10 @@ XFFrame* LwpSdwGroupLoaderV0102::CreateDrawObject()
// we don't need create the corresponding XF-object of a group object.
if (pDrawObj && recType != OT_GROUP)
{
- pRetObjct = pDrawObj->CreateXFDrawObject();
+ pRetObject = pDrawObj->CreateXFDrawObject();
}
- return pRetObjct;
+ return pRetObject;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */