summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-12-18 20:45:06 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-12-18 20:46:06 -0500
commit62de3d17a10cb2fc4eb20992e9decd682eb1d7bb (patch)
treeeff04296405915c7be57f2eb818fd3c3b32ed956 /svtools
parentfc93c17a2e2186ff5e52cc2a3d8f65aadb26c44e (diff)
Build fix for gcc 4.7.
Change-Id: I9b971928fa2737d21c225406bf2a86c088be5b9c
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/menuoptions.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/config/menuoptions.cxx b/svtools/source/config/menuoptions.cxx
index b1055eb7bdf2..c7dc8fe2d356 100644
--- a/svtools/source/config/menuoptions.cxx
+++ b/svtools/source/config/menuoptions.cxx
@@ -350,10 +350,10 @@ Sequence< OUString > SvtMenuOptions_Impl::impl_GetPropertyNames()
// Build static list of configuration key names.
static const OUString pProperties[] =
{
- PROPERTYNAME_DONTHIDEDISABLEDENTRIES ,
- PROPERTYNAME_FOLLOWMOUSE ,
- PROPERTYNAME_SHOWICONSINMENUES ,
- PROPERTYNAME_SYSTEMICONSINMENUES
+ OUString(PROPERTYNAME_DONTHIDEDISABLEDENTRIES) ,
+ OUString(PROPERTYNAME_FOLLOWMOUSE) ,
+ OUString(PROPERTYNAME_SHOWICONSINMENUES) ,
+ OUString(PROPERTYNAME_SYSTEMICONSINMENUES)
};
// Initialize return sequence with these list ...
static const Sequence< OUString > seqPropertyNames( pProperties, PROPERTYCOUNT );