diff options
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 8e8bca223a2e..34399ee2f3e8 100644 --- a/svl/source/items/slstitm.cxx +++ b/svl/source/items/slstitm.cxx @@ -241,7 +241,7 @@ bool SfxStringListItem::QueryValue( css::uno::Any& rVal, sal_uInt8 ) const css::uno::Sequence< OUString > aStringList; pThis->GetStringList( aStringList ); - rVal = css::uno::makeAny( aStringList ); + rVal <<= aStringList; return true; } |