diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-09 10:09:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-09 10:10:13 +0200 |
commit | 184a00b96235f6432294ded63ce4a4a318effdb5 (patch) | |
tree | e4ae0e00cb168fa43d280cfb51a50515258b5320 /include/editeng/AccessibleImageBullet.hxx | |
parent | 534015ad4fd08823b4393dab1ad5d42dedd7bf62 (diff) |
loplugin: inlinesimplememberfunctions
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
Diffstat (limited to 'include/editeng/AccessibleImageBullet.hxx')
-rw-r--r-- | include/editeng/AccessibleImageBullet.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/AccessibleImageBullet.hxx b/include/editeng/AccessibleImageBullet.hxx index 440b42bf37e7..d13ed7bab820 100644 --- a/include/editeng/AccessibleImageBullet.hxx +++ b/include/editeng/AccessibleImageBullet.hxx @@ -145,7 +145,7 @@ namespace accessibility there potential deadlock situations can be resolved. Thus, make sure SolarMutex is locked when calling this. */ - sal_Int32 GetParagraphIndex() const; + sal_Int32 GetParagraphIndex() const { return mnParagraphIndex; } /// Calls all Listener objects to tell them the change. Don't hold locks when calling this! virtual void FireEvent(const sal_Int16 nEventId, const ::com::sun::star::uno::Any& rNewValue = ::com::sun::star::uno::Any(), const ::com::sun::star::uno::Any& rOldValue = ::com::sun::star::uno::Any() ) const; @@ -166,7 +166,7 @@ namespace accessibility SvxEditSource& GetEditSource() const; - int getNotifierClientId() const; + int getNotifierClientId() const { return mnNotifierClientId; } /** Query the SvxTextForwarder for EditEngine access. |