diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-03-14 22:44:58 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-03-16 09:51:12 +0100 |
commit | 2b4c01c268fcda1b7d7fdf2e6c45d7ce18133b81 (patch) | |
tree | 5692ac8ccda3f2582e3b1f7b2855d2d04032bf9d /sw/inc/ndgrf.hxx | |
parent | df8d9fc9a95220fb8ce86734c64e56afa1cbfcfa (diff) |
Remove redundant inline
Change-Id: I1846523359104a00c4fb84dc0d4df4251e4c43b6
Diffstat (limited to 'sw/inc/ndgrf.hxx')
-rw-r--r-- | sw/inc/ndgrf.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/ndgrf.hxx b/sw/inc/ndgrf.hxx index 92f7a5e17ba9..97e6006eff0c 100644 --- a/sw/inc/ndgrf.hxx +++ b/sw/inc/ndgrf.hxx @@ -142,24 +142,24 @@ public: bool IsTransparent() const; - inline bool IsAnimated() const { return maGrfObj.IsAnimated(); } + bool IsAnimated() const { return maGrfObj.IsAnimated(); } - inline bool IsChgTwipSize() const { return bChgTwipSize; } - inline bool IsChgTwipSizeFromPixel() const { return bChgTwipSizeFromPixel; } - inline void SetChgTwipSize( bool b, bool bFromPx=false ) + bool IsChgTwipSize() const { return bChgTwipSize; } + bool IsChgTwipSizeFromPixel() const { return bChgTwipSizeFromPixel; } + void SetChgTwipSize( bool b, bool bFromPx=false ) { bChgTwipSize = b; bChgTwipSizeFromPixel = bFromPx; } - inline bool IsGraphicArrived() const { return bGraphicArrived; } - inline void SetGraphicArrived( bool b ) { bGraphicArrived = b; } + bool IsGraphicArrived() const { return bGraphicArrived; } + void SetGraphicArrived( bool b ) { bGraphicArrived = b; } - inline bool IsFrameInPaint() const { return bFrameInPaint; } - inline void SetFrameInPaint( bool b ) { bFrameInPaint = b; } + bool IsFrameInPaint() const { return bFrameInPaint; } + void SetFrameInPaint( bool b ) { bFrameInPaint = b; } - inline bool IsScaleImageMap() const { return bScaleImageMap; } - inline void SetScaleImageMap( bool b ) { bScaleImageMap = b; } + bool IsScaleImageMap() const { return bScaleImageMap; } + void SetScaleImageMap( bool b ) { bScaleImageMap = b; } /// in ndcopy.cxx virtual SwCntntNode* MakeCopy( SwDoc*, const SwNodeIndex& ) const; @@ -185,8 +185,8 @@ public: /// Query link-data. bool IsGrfLink() const { return refLink.Is(); } - inline bool IsLinkedFile() const; - inline bool IsLinkedDDE() const; + bool IsLinkedFile() const; + bool IsLinkedDDE() const; ::sfx2::SvBaseLinkRef GetLink() const { return refLink; } bool GetFileFilterNms( OUString* pFileNm, OUString* pFilterNm ) const; void ReleaseLink(); |