diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-09 14:48:39 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-09 14:53:07 -0400 |
commit | 827530ce3f91b092c09daa5138ebadf435f63562 (patch) | |
tree | b35a110aed70dd88010e9483f2395bb84109a260 /sc/inc/postit.hxx | |
parent | e44a139fdad49b286eb1a88cc668b52711680e6c (diff) |
More removal of implicit inlines, while I'm at it....
Change-Id: I944e9539f9cea13d2da640d3da1588d44d5570b3
Diffstat (limited to 'sc/inc/postit.hxx')
-rw-r--r-- | sc/inc/postit.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/postit.hxx b/sc/inc/postit.hxx index 0c401d5fa4d7..2359dcff0fc1 100644 --- a/sc/inc/postit.hxx +++ b/sc/inc/postit.hxx @@ -99,12 +99,12 @@ public: bool bCloneCaption ) const; /** Returns the data struct containing all note settings. */ - inline const ScNoteData& GetNoteData() const { return maNoteData; } + const ScNoteData& GetNoteData() const; /** Returns the creation date of this note. */ - inline const OUString& GetDate() const { return maNoteData.maDate; } + const OUString& GetDate() const; /** Sets a new creation date for this note. */ - inline void SetDate( const OUString& rDate ) { maNoteData.maDate = rDate; } + void SetDate( const OUString& rDate ); /** Returns the author date of this note. */ const OUString& GetAuthor() const; @@ -126,7 +126,7 @@ public: /** Returns an existing note caption object. returns null, if the note contains initial caption data needed to construct a caption object. */ - inline SdrCaptionObj* GetCaption() const { return maNoteData.mpCaption; } + SdrCaptionObj* GetCaption() const; /** Returns the caption object of this note. Creates the caption object, if the note contains initial caption data instead of the caption. */ SdrCaptionObj* GetOrCreateCaption( const ScAddress& rPos ) const; @@ -136,7 +136,7 @@ public: /** Shows or hides the note caption object. */ void ShowCaption( const ScAddress& rPos, bool bShow = true ); /** Returns true, if the caption object is visible. */ - inline bool IsCaptionShown() const { return maNoteData.mbShown; } + bool IsCaptionShown() const; /** Shows or hides the caption temporarily (does not change internal visibility state). */ void ShowCaptionTemp( const ScAddress& rPos, bool bShow = true ); |