summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-02 18:23:45 +0200
committerSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2015-07-03 08:19:04 +0000
commit7f73bb5b44202431f4d07b283e47b1bc0a1a651e (patch)
tree26067609d994c0e288134f8563243416c332f94e /lotuswordpro
parente9e61a4a7850ec7f2e0cf238c58794b021da5235 (diff)
Fix typos
Change-Id: I8e429d1f03aac7c7cdb7ff4b43b3f46d40292510 Reviewed-on: https://gerrit.libreoffice.org/16709 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpcelllayout.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpfribheader.hxx2
-rw-r--r--lotuswordpro/source/filter/lwplayout.cxx2
-rw-r--r--lotuswordpro/source/filter/lwppara.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpstory.cxx4
-rw-r--r--lotuswordpro/source/filter/lwptablelayout.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpuidoc.hxx2
-rw-r--r--lotuswordpro/source/filter/xfilter/xffont.cxx2
-rw-r--r--lotuswordpro/source/filter/xfilter/xffontfactory.hxx2
-rw-r--r--lotuswordpro/source/filter/xfilter/xfframe.hxx2
10 files changed, 11 insertions, 11 deletions
diff --git a/lotuswordpro/source/filter/lwpcelllayout.cxx b/lotuswordpro/source/filter/lwpcelllayout.cxx
index 39717cd1d45c..5f8bdb6c63f1 100644
--- a/lotuswordpro/source/filter/lwpcelllayout.cxx
+++ b/lotuswordpro/source/filter/lwpcelllayout.cxx
@@ -324,7 +324,7 @@ XFCell* LwpCellLayout::ConvertCell(LwpObjectID aTableID, sal_uInt16 nRow, sal_uI
OUString aStyleName = m_StyleName;
// if cell layout is aTableID's default cell layout
- // we should judt its style by current position
+ // we should adjust its style by current position
if (pTable->GetDefaultCellStyle() == GetObjectID())
{
aStyleName = GetCellStyleName(nRow, nCol, pTable->GetTableLayout());
diff --git a/lotuswordpro/source/filter/lwpfribheader.hxx b/lotuswordpro/source/filter/lwpfribheader.hxx
index 5a2d8694a9cf..f0e4abf1910a 100644
--- a/lotuswordpro/source/filter/lwpfribheader.hxx
+++ b/lotuswordpro/source/filter/lwpfribheader.hxx
@@ -56,7 +56,7 @@
#ifndef INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPFRIBHEADER_HXX
#define INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPFRIBHEADER_HXX
-#define FRIB_TAG_NOUNICODE 0x40 // Don't xlate text to/from Unicode
+#define FRIB_TAG_NOUNICODE 0x40 // Don't traslate text to/from Unicode
#define FRIB_TAG_MODIFIER 0x80 // This frib has a modifier on it
#define FRIB_TAG_TYPEMASK (FRIB_TAG_NOUNICODE | FRIB_TAG_MODIFIER)
diff --git a/lotuswordpro/source/filter/lwplayout.cxx b/lotuswordpro/source/filter/lwplayout.cxx
index 0ca02f540cc6..7f6e25fa4c47 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -252,7 +252,7 @@ bool LwpVirtualLayout::IsPage()
return (GetLayoutType() == LWP_PAGE_LAYOUT);
}
/**
- * @descr: Whether this layout is heaer layout or not
+ * @descr: Whether this layout is header layout or not
* @param:
* @return:
*/
diff --git a/lotuswordpro/source/filter/lwppara.cxx b/lotuswordpro/source/filter/lwppara.cxx
index 7cebb589f0ea..b903f981df8e 100644
--- a/lotuswordpro/source/filter/lwppara.cxx
+++ b/lotuswordpro/source/filter/lwppara.cxx
@@ -786,7 +786,7 @@ void LwpPara::RegisterStyle()
pStyle->SetParentStyleName(m_ParentStyleName);
m_StyleName = pXFStyleManager->AddStyle(pStyle).m_pStyle->GetStyleName();
}
- // maybe useful for futer version
+ // maybe useful for further version
// deleted because Leader of Table is not supported in this version
//AddTabStyleForTOC();
}
diff --git a/lotuswordpro/source/filter/lwpstory.cxx b/lotuswordpro/source/filter/lwpstory.cxx
index 9b59b26d5904..b2ed42c13dbc 100644
--- a/lotuswordpro/source/filter/lwpstory.cxx
+++ b/lotuswordpro/source/filter/lwpstory.cxx
@@ -172,7 +172,7 @@ void LwpStory::Parse(IXFStream* pOutputStream)
#include "lwppagelayout.hxx"
/**************************************************************************
- * @descr: Set current page layout. If pPageLayout is a mirro page layout,
+ * @descr: Set current page layout. If pPageLayout is a mirror page layout,
use odd child page layout as current page layout.
* @param:
* @param:
@@ -235,7 +235,7 @@ void LwpStory::SortPageLayout()
if(pLayout->IsPage())
{
LwpLayout::UseWhenType eSectionType = static_cast<LwpPageLayout*>(pLayout)->GetUseWhenType();
- //for mirror page, the child is pagelayout
+ //for mirror page, the child is pagelayout
LwpVirtualLayout* pParent = pLayout->GetParentLayout();
if(eSectionType != LwpLayout::StartWithinColume && pParent && !pParent->IsPage())
{
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx
index e2edf492bda4..3e6d5662883a 100644
--- a/lotuswordpro/source/filter/lwptablelayout.cxx
+++ b/lotuswordpro/source/filter/lwptablelayout.cxx
@@ -738,7 +738,7 @@ void LwpTableLayout::RegisterStyle()
XFStyleManager* pXFStyleManager = LwpGlobalMgr::GetInstance()->GetXFStyleManager();
m_StyleName = pXFStyleManager->AddStyle(pTableStyle).m_pStyle->GetStyleName();
- //convert to OO table now and register row stle
+ //convert to OO table now and register row style
// traverse
TraverseTable();
diff --git a/lotuswordpro/source/filter/lwpuidoc.hxx b/lotuswordpro/source/filter/lwpuidoc.hxx
index 632088b9a240..73ecdc0a9708 100644
--- a/lotuswordpro/source/filter/lwpuidoc.hxx
+++ b/lotuswordpro/source/filter/lwpuidoc.hxx
@@ -105,7 +105,7 @@ public:
void Read(LwpObjectStream *pStrm);
};
/**
- * @brief Merget options contained in UIDocument structure
+ * @brief Merge options contained in UIDocument structure
* not parsed yet
*/
class LwpMergeOptions
diff --git a/lotuswordpro/source/filter/xfilter/xffont.cxx b/lotuswordpro/source/filter/xfilter/xffont.cxx
index 9a37d5f9c85f..6a6d0f16177c 100644
--- a/lotuswordpro/source/filter/xfilter/xffont.cxx
+++ b/lotuswordpro/source/filter/xfilter/xffont.cxx
@@ -369,7 +369,7 @@ void XFFont::ToXml(IXFStream *pStrm)
pAttrList->AddAttribute("style:text-blinking", "true" );
}
- //position & sacle:
+ //position & scale:
if( ((m_nFlag & XFFONT_FLAG_SCALE) && m_nScale>0 ) ||
((m_nFlag & XFFONT_FLAG_POSITION) && m_nPosition != 0)
)
diff --git a/lotuswordpro/source/filter/xfilter/xffontfactory.hxx b/lotuswordpro/source/filter/xfilter/xffontfactory.hxx
index 59f95f89ac3d..33baf5cade35 100644
--- a/lotuswordpro/source/filter/xfilter/xffontfactory.hxx
+++ b/lotuswordpro/source/filter/xfilter/xffontfactory.hxx
@@ -71,7 +71,7 @@
/**
* @brief
* Font factory.
- * Because font object are so used so offten, so make a factory to manager them.
+ * Because font object are so used so often, so make a factory to manager them.
* The fonts with same properties will only exist one instance.
*/
class XFFontFactory
diff --git a/lotuswordpro/source/filter/xfilter/xfframe.hxx b/lotuswordpro/source/filter/xfilter/xfframe.hxx
index d9fdb43c74df..fb14739b2acb 100644
--- a/lotuswordpro/source/filter/xfilter/xfframe.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfframe.hxx
@@ -122,7 +122,7 @@ public:
void SetY(double y);
/**
- * @descr Set frame wieth.
+ * @descr Set frame width.
*/
void SetWidth(double width);