summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-14 13:58:39 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-14 15:19:50 +0100
commit4a641de8e054e781fdb054be1210abe956effac0 (patch)
treeeae9ff977fdb0e97f89d9768df6e5b85fdfbc76d /l10ntools
parent78fc50f06e5e9bb288570868f7521984d5d60981 (diff)
ByteString -> rtl::OString
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/export2.cxx2
-rw-r--r--l10ntools/source/helpmerge.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/export2.cxx b/l10ntools/source/export2.cxx
index 587f289115a5..0b7fb44d8a95 100644
--- a/l10ntools/source/export2.cxx
+++ b/l10ntools/source/export2.cxx
@@ -447,7 +447,7 @@ void Export::InitForcedLanguages( bool bMergeMode ){
ByteString Export::GetFallbackLanguage( const ByteString nLanguage )
/*****************************************************************************/
{
- ByteString sFallback=nLanguage;
+ rtl::OString sFallback=nLanguage;
GetIsoFallback( sFallback );
return sFallback;
}
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx
index 045ba7ceb299..9203fd94b5e7 100644
--- a/l10ntools/source/helpmerge.cxx
+++ b/l10ntools/source/helpmerge.cxx
@@ -57,7 +57,7 @@ void HelpParser::FillInFallbacks( LangHashMap& rElem_out, ByteString sLangIdx_in
XMLElement* pTmp2 = NULL;
sCur = sLangIdx_in;
- ByteString sFallback( sCur );
+ rtl::OString sFallback( sCur );
GetIsoFallback( sFallback );
if( (rElem_out.find( sFallback ) != rElem_out.end()) && rElem_out[ sFallback ] != NULL ){
pTmp2 = rElem_out[ sFallback ];