diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-03 20:57:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-03 20:55:50 +0000 |
commit | 6cb9e6dad798ec59f055aebe84a9c4a21e4be40d (patch) | |
tree | 21a7d6c0b165251ba8e0f36e73c851d41ac9dd04 /include/svx/swframeexample.hxx | |
parent | 7e8806cd728bf906e1a8f1d649bef7337f297b1c (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/svx/swframeexample.hxx')
-rw-r--r-- | include/svx/swframeexample.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svx/swframeexample.hxx b/include/svx/swframeexample.hxx index 6ac7f6b31af5..8b17f6290da4 100644 --- a/include/svx/swframeexample.hxx +++ b/include/svx/swframeexample.hxx @@ -74,16 +74,16 @@ public: SvxSwFrameExample(vcl::Window* pParent, WinBits nStyle); - inline void SetWrap(sal_uInt16 nW) { nWrap = nW; } + void SetWrap(sal_uInt16 nW) { nWrap = nW; } - inline void SetHAlign(short nH) { nHAlign = nH; } - inline void SetHoriRel(short nR) { nHRel = nR; } + void SetHAlign(short nH) { nHAlign = nH; } + void SetHoriRel(short nR) { nHRel = nR; } - inline void SetVAlign(short nV) { nVAlign = nV; } - inline void SetVertRel(short nR) { nVRel = nR; } + void SetVAlign(short nV) { nVAlign = nV; } + void SetVertRel(short nR) { nVRel = nR; } - inline void SetTransparent(bool bT) { bTrans = bT; } - inline void SetAnchor(short nA) { nAnchor = nA; } + void SetTransparent(bool bT) { bTrans = bT; } + void SetAnchor(short nA) { nAnchor = nA; } void SetRelPos(const Point& rP); }; |