summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-28 13:14:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-28 13:14:03 +0100
commit563e56653b725e8f968df60eb25132fd7084461c (patch)
tree37eee2c1b565cc8c36ddc75f50b215ab5bf370ab /extensions
parentfix leak (diff)
downloadcore-563e56653b725e8f968df60eb25132fd7084461c.tar.gz
core-563e56653b725e8f968df60eb25132fd7084461c.zip
loplugin:unoany
Change-Id: I57375d39aa2e84e40f2c2eb13e3e942497a78a3e
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index 8fc5989dbf9b..1f40751a423c 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -436,17 +436,17 @@ uno::Any UpdateCheckUI::getPropertyValue(const OUString& rPropertyName)
uno::Any aRet;
if( rPropertyName == PROPERTY_TITLE )
- aRet = uno::makeAny( maBubbleTitle );
+ aRet <<= maBubbleTitle;
else if( rPropertyName == PROPERTY_TEXT )
- aRet = uno::makeAny( maBubbleText );
+ aRet <<= maBubbleText;
else if( rPropertyName == PROPERTY_SHOW_BUBBLE )
- aRet = uno::makeAny( mbShowBubble );
+ aRet <<= mbShowBubble;
else if( rPropertyName == PROPERTY_IMAGE )
- aRet = uno::makeAny( maBubbleImageURL );
+ aRet <<= maBubbleImageURL;
else if( rPropertyName == PROPERTY_CLICK_HDL )
- aRet = uno::makeAny( mrJob );
+ aRet <<= mrJob;
else if( rPropertyName == PROPERTY_SHOW_MENUICON )
- aRet = uno::makeAny( mbShowMenuIcon );
+ aRet <<= mbShowMenuIcon;
else
throw beans::UnknownPropertyException();