summaryrefslogtreecommitdiff
path: root/include/editeng/adjustitem.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-03 20:57:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-03 20:55:50 +0000
commit6cb9e6dad798ec59f055aebe84a9c4a21e4be40d (patch)
tree21a7d6c0b165251ba8e0f36e73c851d41ac9dd04 /include/editeng/adjustitem.hxx
parent7e8806cd728bf906e1a8f1d649bef7337f297b1c (diff)
Remove redundant 'inline' keyword
...from function definitions occurring within class definitions. Done with a rewriting Clang plugin (to be pushed later). Change-Id: I9c6f2818a57ccdb361548895a7743107cbacdff8 Reviewed-on: https://gerrit.libreoffice.org/34874 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/editeng/adjustitem.hxx')
-rw-r--r--include/editeng/adjustitem.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/editeng/adjustitem.hxx b/include/editeng/adjustitem.hxx
index 2af8a546c4b5..04a04ff36ee3 100644
--- a/include/editeng/adjustitem.hxx
+++ b/include/editeng/adjustitem.hxx
@@ -71,18 +71,18 @@ public:
virtual SvStream& Store(SvStream &, sal_uInt16 nItemVersion ) const override;
virtual sal_uInt16 GetVersion( sal_uInt16 nFileVersion ) const override;
- inline void SetOneWord( const SvxAdjust eType )
+ void SetOneWord( const SvxAdjust eType )
{
bOneBlock = eType == SVX_ADJUST_BLOCK;
}
- inline void SetLastBlock( const SvxAdjust eType )
+ void SetLastBlock( const SvxAdjust eType )
{
bLastBlock = eType == SVX_ADJUST_BLOCK;
bLastCenter = eType == SVX_ADJUST_CENTER;
}
- inline void SetAdjust( const SvxAdjust eType )
+ void SetAdjust( const SvxAdjust eType )
{
bLeft = eType == SVX_ADJUST_LEFT;
bRight = eType == SVX_ADJUST_RIGHT;
@@ -90,7 +90,7 @@ public:
bBlock = eType == SVX_ADJUST_BLOCK;
}
- inline SvxAdjust GetLastBlock() const
+ SvxAdjust GetLastBlock() const
{
SvxAdjust eRet = SVX_ADJUST_LEFT;
@@ -101,7 +101,7 @@ public:
return eRet;
}
- inline SvxAdjust GetOneWord() const
+ SvxAdjust GetOneWord() const
{
SvxAdjust eRet = SVX_ADJUST_LEFT;
@@ -110,7 +110,7 @@ public:
return eRet;
}
- inline SvxAdjust GetAdjust() const
+ SvxAdjust GetAdjust() const
{
SvxAdjust eRet = SVX_ADJUST_LEFT;