diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-12 17:03:26 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-12 20:02:11 +0000 |
commit | 127b2e59995f3abcf1593138cd27af9f375d7b1b (patch) | |
tree | ecb54995e92a5ee3f2c3173df732d2457b04361e /lotuswordpro | |
parent | 975bfbe29dc92de8d9e081685d2377ea8f7ce62e (diff) |
Fix typos
Change-Id: I63da858b3f264cd099e60192633b44d362b6fad7
Reviewed-on: https://gerrit.libreoffice.org/35055
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xfdrawobj.hxx | 2 | ||||
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xfparastyle.hxx | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx b/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx index 3c4292acac7f..3d0760b6ae43 100644 --- a/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx +++ b/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx @@ -74,7 +74,7 @@ * Base class for all drawing object(ellipse,rect,circle,...). * I can set Positions,anchor,rotate,text style name here. * - * Drawing objects can be rotated,scaled and skewed, drawing objects must have positions setted, + * Drawing objects can be rotated, scaled and skewed, drawing objects must have positions set, * you can use SetPosition(...). */ class XFDrawObject : public XFFrame diff --git a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx index 07f4c7081a07..c73e34661de2 100644 --- a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx @@ -102,7 +102,7 @@ public: public: /** - * @descr Set layout for the paragraph.When such property was setted, this paragraph will + * @descr Set layout for the paragraph. When such property was set, this paragraph will * start at an new page. */ void SetMasterPage(const OUString& master); @@ -111,7 +111,7 @@ public: /** * @descr set the paragraph default font. - * @param font font object to be setted.Font object are deleted by font-factory,so + * @param font object to be set. Font object is deleted by font-factory, so * don't delete it in the destructure function of para style. */ void SetFont(rtl::Reference<XFFont> const & font); @@ -122,14 +122,14 @@ public: const rtl::Reference<XFFont>& GetFont(){ return m_pFont; } /** - * @descr Set the indent of the paragraph.This is the indent for + * @descr Set the indent of the paragraph. This is the indent for the first line. * @param indent value of the first-line indent. */ void SetIndent(double indent ); /** - * @descr Set the padding of the paragraph.This is the distance + * @descr Set the padding of the paragraph. This is the distance between the border and the top of the text. * @param indent value of the padding. */ @@ -149,7 +149,7 @@ public: void SetAlignType(enumXFAlignType eAlign); /** - * @descr Set the shadow of the paragraph.there is 4 positions, you + * @descr Set the shadow of the paragraph. There are 4 positions, you can find it in the definition of enumShadowPos. * @param pos * @param offset the distance between the paragraph border and the shadow. @@ -158,7 +158,7 @@ public: void SetShadow(enumXFShadowPos pos, double offset, XFColor& color); /** - * @descr The borders is complex,so you have to create one before use. + * @descr The borders is complex, so you have to create one before use. Very few paragraphs will readly have borders property,this way we can save much memory. * @param pBorders borders of the paragraph,please reference the XFBorders. @@ -202,7 +202,7 @@ public: void AddTabStyle(enumXFTab type, double len, sal_Unicode leader, sal_Unicode delimiter); /** - * @descr for para style copy operator,sometimes you may need to override tab styles. + * @descr for para style copy operator, sometimes you may need to override tab styles. */ void ClearTabStyles(); |