summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-24 13:27:07 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-11-24 14:56:14 +0000
commit427e6996bd042af61fd04aae6381c2958d2fda70 (patch)
treebca856f69a1d4cbab6cccc6326959153eb365442 /rsc
parent936ed583e648a762b7e485c15d08aa380505c4e5 (diff)
can drop InitLangStringTupelList
Change-Id: I2469392a5874b55a071c5f31d467c6f33b03887b
Diffstat (limited to 'rsc')
-rw-r--r--rsc/inc/rscdb.hxx1
-rw-r--r--rsc/source/parser/rscibas.cxx6
-rw-r--r--rsc/source/parser/rscinit.cxx1
3 files changed, 0 insertions, 8 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index b6effc2c29e5..ad9da6cc87cb 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -95,7 +95,6 @@ class RscTypCont
RscTupel * InitStringLongTupel();
static RscCont * InitStringTupelList( RscTupel * pStringTupel );
static RscCont * InitStringLongTupelList( RscTupel * pStringLongTupel );
- RscArray * InitLangStringTupelList( RscCont * pStrTupelLst );
RscArray * InitLangStringLongTupelList( RscCont * pStrLongTupelLst );
RscTop * InitClassMgr();
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 ) );