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 /svl | |
parent | 534015ad4fd08823b4393dab1ad5d42dedd7bf62 (diff) |
loplugin: inlinesimplememberfunctions
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/int64item.cxx | 4 | ||||
-rw-r--r-- | svl/source/items/style.cxx | 8 | ||||
-rw-r--r-- | svl/source/misc/sharedstring.cxx | 8 |
3 files changed, 0 insertions, 20 deletions
diff --git a/svl/source/items/int64item.cxx b/svl/source/items/int64item.cxx index 07ae77f70bf9..c407fbeb763a 100644 --- a/svl/source/items/int64item.cxx +++ b/svl/source/items/int64item.cxx @@ -95,10 +95,6 @@ SfxPoolItem* SfxInt64Item::Clone( SfxItemPool* /*pOther*/ ) const return new SfxInt64Item(*this); } -sal_Int64 SfxInt64Item::GetValue() const -{ - return mnValue; -} void SfxInt64Item::SetValue( sal_Int64 nVal ) { diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index 40e8eeec207f..4848b027e104 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -604,10 +604,6 @@ void SfxStyleSheetBasePool::SetSearchMask(SfxStyleFamily eFam, sal_uInt16 n) nSearchFamily = eFam; nMask = n; } -sal_uInt16 SfxStyleSheetBasePool::GetSearchMask() const -{ - return nMask; -} SfxStyleSheetIteratorPtr SfxStyleSheetBasePool::CreateIterator ( @@ -845,10 +841,6 @@ SfxItemPool& SfxStyleSheetBasePool::GetPool() return rPool; } -const SfxItemPool& SfxStyleSheetBasePool::GetPool() const -{ - return rPool; -} SfxStyleSheet::SfxStyleSheet(const OUString &rName, diff --git a/svl/source/misc/sharedstring.cxx b/svl/source/misc/sharedstring.cxx index 81379520a3d9..2bddc75fad29 100644 --- a/svl/source/misc/sharedstring.cxx +++ b/svl/source/misc/sharedstring.cxx @@ -100,20 +100,12 @@ OUString SharedString::getString() const return mpData ? OUString(mpData) : OUString(); } -rtl_uString* SharedString::getData() -{ - return mpData; -} const rtl_uString* SharedString::getData() const { return mpData; } -rtl_uString* SharedString::getDataIgnoreCase() -{ - return mpDataIgnoreCase; -} const rtl_uString* SharedString::getDataIgnoreCase() const { |