diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-13 11:22:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-13 13:27:52 +0200 |
commit | 27b6782f5b17167e4258656aef9aef34a10699db (patch) | |
tree | 73a2106f31983fede173db2fb090a14468091a96 /include/editeng/editeng.hxx | |
parent | ecebf3bd99b100382f4bc9242ca8e882f83b275a (diff) |
loplugin:passstuffbyref in editeng
Change-Id: I11deb7c73a1c160d587d74c9851ff10c875c972b
Diffstat (limited to 'include/editeng/editeng.hxx')
-rw-r--r-- | include/editeng/editeng.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx index 267f0f0f6c23..46adeb2aa3bb 100644 --- a/include/editeng/editeng.hxx +++ b/include/editeng/editeng.hxx @@ -377,7 +377,7 @@ public: Link<EENotify&,void> GetNotifyHdl() const; void SetImportHdl( const Link<ImportInfo&,void>& rLink ); - Link<ImportInfo&,void> GetImportHdl() const; + const Link<ImportInfo&,void>& GetImportHdl() const; // Do not evaluate font formatting => For Outliner bool IsFlatMode() const; @@ -410,7 +410,7 @@ public: SfxStyleSheet* GetStyleSheet( sal_Int32 nPara ); void SetWordDelimiters( const OUString& rDelimiters ); - OUString GetWordDelimiters() const; + const OUString& GetWordDelimiters() const; void EraseVirtualDevice(); |