summaryrefslogtreecommitdiff
path: root/sd/source/filter/html/buttonset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/filter/html/buttonset.cxx')
-rw-r--r--sd/source/filter/html/buttonset.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/filter/html/buttonset.cxx b/sd/source/filter/html/buttonset.cxx
index a6c88b85f367..751e5db0b63f 100644
--- a/sd/source/filter/html/buttonset.cxx
+++ b/sd/source/filter/html/buttonset.cxx
@@ -153,14 +153,14 @@ public:
ButtonSetImpl::ButtonSetImpl()
{
- const OUString sSubPath( "/wizard/web/buttons" );
+ static const char sSubPath[] = "/wizard/web/buttons" ;
- OUString sSharePath( SvtPathOptions().GetConfigPath() );
- sSharePath += sSubPath;
+ OUString sSharePath = SvtPathOptions().GetConfigPath() +
+ sSubPath;
scanForButtonSets( sSharePath );
- OUString sUserPath( SvtPathOptions().GetUserConfigPath() );
- sUserPath += sSubPath;
+ OUString sUserPath = SvtPathOptions().GetUserConfigPath() +
+ sSubPath;
scanForButtonSets( sUserPath );
}