diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-29 23:03:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-30 09:32:23 +0100 |
commit | 98f246d83db8f1a3e90dd794f48c390593a3ef62 (patch) | |
tree | da17ce5516a0d2fbe4778f08aa5facc0d6d49250 /rsc/source/parser/rscibas.cxx | |
parent | 8fd3e7c09177a856fb9ba6de0e42af5d12b67652 (diff) |
ByteString->rtl::OString
Diffstat (limited to 'rsc/source/parser/rscibas.cxx')
-rw-r--r-- | rsc/source/parser/rscibas.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rsc/source/parser/rscibas.cxx b/rsc/source/parser/rscibas.cxx index 057c338e778e..057c809d8f3d 100644 --- a/rsc/source/parser/rscibas.cxx +++ b/rsc/source/parser/rscibas.cxx @@ -36,6 +36,7 @@ #include <string.h> #include <i18npool/mslangid.hxx> +#include <comphelper/string.hxx> #include <tools/rc.h> #include <tools/color.hxx> @@ -158,7 +159,7 @@ void RscLangEnum::Init( RscNameTable& rNames ) sal_Bool bOneMore = 1; while ( bOneMore ) { - aIsoToken = aEnvIsoTokens.GetToken( nTokenCounter, ' ' ); + aIsoToken = comphelper::string::getToken(aEnvIsoTokens, nTokenCounter, ' '); if ( aIsoToken.Len() ) { SetConstant( rNames.Put( aIsoToken.GetBuffer(), CONSTNAME, mnLangId ), mnLangId ); |