summaryrefslogtreecommitdiff
path: root/extensions/source/update/ui/updatecheckui.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-14 17:25:55 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-14 17:25:55 +0200
commit9d67b621c5c3247d8b7c983a81248d7dbde582fb (patch)
tree5e33edc0f5027486fda1d5c9d56f09187e746e88 /extensions/source/update/ui/updatecheckui.cxx
parentc91d353872b7d4e1a39192bff1444b46cab6e5eb (diff)
Fix compilation error with older GCC
The GCC 4.0 we still use for the "official" Mac OS X build says: "error: conversion from ‘const char*’ to non-scalar type ‘rtl::OUString’ requested." Sigh, I guess there might be lots more of these elsewhere in the code. Change-Id: Ifad5722bbadd465ebfca1ac3f0b55f07a6895e12
Diffstat (limited to 'extensions/source/update/ui/updatecheckui.cxx')
-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 f5565f38742a..4176cab5cc02 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -75,7 +75,7 @@ static uno::Sequence< rtl::OUString > getServiceNames()
static rtl::OUString getImplementationName()
{
- return "vnd.sun.UpdateCheckUI";
+ return rtl::OUString("vnd.sun.UpdateCheckUI");
}
//------------------------------------------------------------------------------