summaryrefslogtreecommitdiff
path: root/rsc/source/parser
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-02 13:21:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-02 14:22:21 +0100
commitf8922b67a4dc1ff0b889f33d2407584aed5d2e36 (patch)
treec3dbbc81468176b79e03b8222bb174fc24a30e16 /rsc/source/parser
parentc7531408b3ef4b2d284edf35ed983c23e7585231 (diff)
Remove unnecessary comphelper::string::getToken
Change-Id: I49192637121441b9a1980350b9bb32cd995d4386
Diffstat (limited to 'rsc/source/parser')
-rw-r--r--rsc/source/parser/rscibas.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/parser/rscibas.cxx b/rsc/source/parser/rscibas.cxx
index b5f72362a568..92babd05fd3a 100644
--- a/rsc/source/parser/rscibas.cxx
+++ b/rsc/source/parser/rscibas.cxx
@@ -126,7 +126,7 @@ void RscLangEnum::Init( RscNameTable& rNames )
bool bOneMore = true;
while ( bOneMore )
{
- aIsoToken = comphelper::string::getToken(aEnvIsoTokens, nTokenCounter, ' ');
+ aIsoToken = aEnvIsoTokens.getToken(nTokenCounter, ' ');
if ( !aIsoToken.isEmpty() )
{
SetConstant( rNames.Put( aIsoToken.getStr(), CONSTNAME, mnLangId ), mnLangId );