diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-28 13:14:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-28 13:14:03 +0100 |
commit | 563e56653b725e8f968df60eb25132fd7084461c (patch) | |
tree | 37eee2c1b565cc8c36ddc75f50b215ab5bf370ab /extensions | |
parent | 06206252f43c388e781f7bf1665604da108f14c8 (diff) |
loplugin:unoany
Change-Id: I57375d39aa2e84e40f2c2eb13e3e942497a78a3e
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 12 |
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(); |