diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-05-04 15:51:56 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-05-04 15:52:57 +0200 |
commit | 135c63c8f9cc363c0895542b0f3bed48b61ea836 (patch) | |
tree | 5afa3bcc304e246b38058c2ad7b0d1fd1e76a05f /svl/source/items/slstitm.cxx | |
parent | c48fe716225b1b784d657685396b6cf5fee4fc3d (diff) |
fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CAST
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
Diffstat (limited to 'svl/source/items/slstitm.cxx')
-rw-r--r-- | svl/source/items/slstitm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx index d12ab3e0f5a6..bc7efbe430ad 100644 --- a/svl/source/items/slstitm.cxx +++ b/svl/source/items/slstitm.cxx @@ -147,7 +147,7 @@ std::vector<String>& SfxStringListItem::GetList() const std::vector<String>& SfxStringListItem::GetList () const { - return SAL_CONST_CAST(SfxStringListItem *, this)->GetList(); + return (const_cast< SfxStringListItem * >(this))->GetList(); } //------------------------------------------------------------------------ |