summaryrefslogtreecommitdiff
path: root/extensions/source/update
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 11:55:50 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:23 +0200
commit22435a0777d6048757855f7f30b04fb8e5523fb2 (patch)
tree2a8e66dbfca50cfee05739cf799f94b00774340d /extensions/source/update
parent957f8e02c29bc4df2f37f2a933957490cdf831f6 (diff)
remove unnecessary use of OUString constructor in EXTENSIONS module
Change-Id: Idf73eb831f52d4d74e6fbb6ea27f59ebbfd13a8c
Diffstat (limited to 'extensions/source/update')
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index 9b167cbf7a8e..9d1e53517836 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -307,7 +307,7 @@ Image UpdateCheckUI::GetBubbleImage( OUString &rURL )
{
uno::Reference< graphic::XGraphicProvider > xGraphProvider(graphic::GraphicProvider::create(xContext));
uno::Sequence< beans::PropertyValue > aMediaProps( 1 );
- aMediaProps[0].Name = OUString("URL");
+ aMediaProps[0].Name = "URL";
aMediaProps[0].Value <<= rURL;
uno::Reference< graphic::XGraphic > xGraphic = xGraphProvider->queryGraphic( aMediaProps );