summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-12-15 14:03:01 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2011-12-16 21:20:08 +0100
commitf958657cc5a179a2bccff06f88cd36f80b779184 (patch)
treee5d9eda71d9a2add0c1576ca36a1d5d2b778446a /unotools
parentbacafe9a07cb2af737b99641efc9cddf55340837 (diff)
gcc-trunk: fix error: unable to find string literal operator 'operator"" FOO'
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/bootstrap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/bootstrap.cxx b/unotools/source/config/bootstrap.cxx
index 0b832f3f0eb8..8e94a92fa27a 100644
--- a/unotools/source/config/bootstrap.cxx
+++ b/unotools/source/config/bootstrap.cxx
@@ -93,7 +93,7 @@ namespace utl
rtl::Bootstrap::get(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("BRAND_BASE_DIR")),
uri);
- return uri + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/program/"BOOTSTRAP_DATA_NAME));
+ return uri + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/program/" BOOTSTRAP_DATA_NAME));
}
}
@@ -839,7 +839,7 @@ sal_Bool Bootstrap::Impl::getVersionValue(OUString const& _sName, OUString& _rVa
rtl::Bootstrap::get(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("BRAND_BASE_DIR")), uri);
rtl::Bootstrap aData( uri +
- OUString(RTL_CONSTASCII_USTRINGPARAM("/program/"SAL_CONFIGFILE("version"))) );
+ OUString(RTL_CONSTASCII_USTRINGPARAM("/program/" SAL_CONFIGFILE("version"))) );
if ( aData.getHandle() == NULL )
// version.ini (versionrc) doesn't exist
return sal_False;