Kaydet (Commit) 563e5665 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unoany

Change-Id: I57375d39aa2e84e40f2c2eb13e3e942497a78a3e
üst 06206252
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment