diff options
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/deployment/misc/dp_descriptioninfoset.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx index 9acb846ae32e..55b73c2d0b26 100644 --- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx +++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx @@ -473,8 +473,7 @@ css::uno::Sequence< OUString > DescriptionInfoset::getSupportedPlatforms() const sal_Int32 nIndex = 0; do { - OUString aToken = value.getToken( 0, ',', nIndex ); - aToken = aToken.trim(); + const OUString aToken = value.getToken( 0, ',', nIndex ).trim(); if (!aToken.isEmpty()) vec.push_back(aToken); |