diff options
author | Tomaž Vajngerl <quikee@gmail.com> | 2013-09-15 16:09:24 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2013-09-15 16:09:24 +0200 |
commit | 2acfc0a94c95ae579aca6f057949f59bd7c123b9 (patch) | |
tree | d06e026ef191e7ea6251a45ce0a6be48385ddb0e /include/svx/rulritem.hxx | |
parent | 4bc0d4ebe09756b044dc81a9adce1cb95ad9c3f8 (diff) |
cleanup ruler items (rulritem.hxx) - remove comments, identation
Change-Id: I450ebe3ceab0acf03221970b33c8da4cbb2c6a52
Diffstat (limited to 'include/svx/rulritem.hxx')
-rw-r--r-- | include/svx/rulritem.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/svx/rulritem.hxx b/include/svx/rulritem.hxx index b2c6195a0699..cd19467917cb 100644 --- a/include/svx/rulritem.hxx +++ b/include/svx/rulritem.hxx @@ -21,7 +21,7 @@ #include <tools/gen.hxx> #include <svl/poolitem.hxx> -#include "svx/svxdllapi.h" +#include <svx/svxdllapi.h> #include <vector> class SVX_DLLPUBLIC SvxLongLRSpaceItem : public SfxPoolItem @@ -52,10 +52,10 @@ public: SvxLongLRSpaceItem(const SvxLongLRSpaceItem &); SvxLongLRSpaceItem(); - long GetLeft() const { return lLeft; } - long GetRight() const { return lRight; } - void SetLeft(long lArgLeft) {lLeft=lArgLeft;} - void SetRight(long lArgRight) {lRight=lArgRight;} + long GetLeft() const; + long GetRight() const; + void SetLeft(long lArgLeft); + void SetRight(long lArgRight); }; class SVX_DLLPUBLIC SvxLongULSpaceItem : public SfxPoolItem @@ -86,10 +86,10 @@ public: SvxLongULSpaceItem(const SvxLongULSpaceItem &); SvxLongULSpaceItem(); - long GetUpper() const { return lLeft; } - long GetLower() const { return lRight; } - void SetUpper(long lArgLeft) {lLeft=lArgLeft;} - void SetLower(long lArgRight) {lRight=lArgRight;} + long GetUpper() const; + long GetLower() const; + void SetUpper(long lArgLeft); + void SetLower(long lArgRight); }; class SVX_DLLPUBLIC SvxPagePosSizeItem : public SfxPoolItem |