diff options
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(); |