summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rsc/rsc.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx
index 93dc64e823a8..fc80beac2444 100644
--- a/rsc/source/rsc/rsc.cxx
+++ b/rsc/source/rsc/rsc.cxx
@@ -74,6 +74,7 @@ using ::rtl::OString;
using ::rtl::OStringBuffer;
using ::rtl::OStringToOUString;
using comphelper::string::getToken;
+using comphelper::string::getTokenCount;
/*************** F o r w a r d s *****************************************/
/*************** G l o b a l e V a r i a b l e n **********************/
@@ -1154,7 +1155,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile,
while( aIStm.ReadLine( aLine ) )
{
- if( ( aLine.GetTokenCount( '=' ) == 2 ) &&
+ if( ( getTokenCount(aLine, '=') == 2 ) &&
( getToken(aLine, 0, '=').indexOf("File") != -1 ) )
{
rtl::OString aBaseFileName( getToken(getToken(aLine, 1, '"'), 0, '.') );