diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 13:27:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 14:56:14 +0000 |
commit | 427e6996bd042af61fd04aae6381c2958d2fda70 (patch) | |
tree | bca856f69a1d4cbab6cccc6326959153eb365442 /rsc/source/parser | |
parent | 936ed583e648a762b7e485c15d08aa380505c4e5 (diff) |
can drop InitLangStringTupelList
Change-Id: I2469392a5874b55a071c5f31d467c6f33b03887b
Diffstat (limited to 'rsc/source/parser')
-rw-r--r-- | rsc/source/parser/rscibas.cxx | 6 | ||||
-rw-r--r-- | rsc/source/parser/rscinit.cxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/rsc/source/parser/rscibas.cxx b/rsc/source/parser/rscibas.cxx index 4860da4afd97..1d344a62b68b 100644 --- a/rsc/source/parser/rscibas.cxx +++ b/rsc/source/parser/rscibas.cxx @@ -433,12 +433,6 @@ RscCont * RscTypCont::InitStringLongTupelList( RscTupel * pStringLong ) return pCont; } -RscArray * RscTypCont::InitLangStringTupelList( RscCont * pStrTupelLst ) -{ - return new RscArray( pHS->getID( "Lang_CharsCharsTupel" ), - RSC_NOTYPE, pStrTupelLst, &aLangType ); -} - RscArray * RscTypCont::InitLangStringLongTupelList( RscCont * pStrLongTupelLst ) { return new RscArray( pHS->getID( "Lang_CharsLongTupelList" ), diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx index 71a07aa8f24f..c4cb36935d10 100644 --- a/rsc/source/parser/rscinit.cxx +++ b/rsc/source/parser/rscinit.cxx @@ -101,7 +101,6 @@ void RscTypCont::Init() aBaseLst.push_back( pLangStringList = InitLangStringList( pStringList ) ); aBaseLst.push_back( pStringTupel = InitStringTupel() ); aBaseLst.push_back( pStringTupelList = InitStringTupelList( pStringTupel ) ); - aBaseLst.push_back( InitLangStringTupelList( pStringTupelList ) ); aBaseLst.push_back( pStringLongTupel = InitStringLongTupel() ); aBaseLst.push_back( pStringLongTupelList = InitStringLongTupelList( pStringLongTupel ) ); aBaseLst.push_back( pLangStringLongTupelList = InitLangStringLongTupelList( pStringLongTupelList ) ); |