summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-16 16:20:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-16 16:20:55 +0000
commit82c45185e29250f2e936f78524bdc144da02f2a1 (patch)
treebb1f361a074f7efee637e99af5f7d9c7182597da /framework
parent8ad259afb7508706ffe70f1bee097a77303c3c43 (diff)
drop static and just use a single sal_Unicode
Diffstat (limited to 'framework')
-rw-r--r--framework/source/inc/pattern/configuration.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/framework/source/inc/pattern/configuration.hxx b/framework/source/inc/pattern/configuration.hxx
index f5c6a296863b..5c46c1cbc0fc 100644
--- a/framework/source/inc/pattern/configuration.hxx
+++ b/framework/source/inc/pattern/configuration.hxx
@@ -119,8 +119,6 @@ class ConfigurationHelper
const ::rtl::OUString& sRelPath ,
sal_Int32 nOpenFlags)
{
- static ::rtl::OUString PATH_SEPERATOR(RTL_CONSTASCII_USTRINGPARAM("/"));
-
css::uno::Reference< css::uno::XInterface > xCFG;
try
@@ -130,7 +128,7 @@ class ConfigurationHelper
::rtl::OUStringBuffer sPath(1024);
sPath.append(sPackage );
- sPath.append(PATH_SEPERATOR);
+ sPath.append(static_cast<sal_Unicode>('/'));
sPath.append(sRelPath );
sal_Bool bReadOnly = ((nOpenFlags & ConfigurationHelper::E_READONLY ) == ConfigurationHelper::E_READONLY );