diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 13:24:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 14:56:14 +0000 |
commit | 936ed583e648a762b7e485c15d08aa380505c4e5 (patch) | |
tree | b1f6b36af6be126ce8030084e834f862374be491 /rsc | |
parent | 5dc62f7129af6f1517448cd26c507c09efe5f026 (diff) |
these geometry things go nowhere now
Change-Id: If98ca8acccececeff2b335f90d3ef6082f2053d0
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rscdb.hxx | 2 | ||||
-rw-r--r-- | rsc/source/parser/rscibas.cxx | 25 | ||||
-rw-r--r-- | rsc/source/parser/rscinit.cxx | 4 |
3 files changed, 0 insertions, 31 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 580aaca5f21e..b6effc2c29e5 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -89,8 +89,6 @@ class RscTypCont RscEnum * InitMapUnit(); RscEnum * InitKey(); RscEnum * InitTriState(); - RscTupel * InitGeometry(); - RscArray * InitLangGeometry( RscTupel * pGeo ); RscCont * InitStringList(); RscArray * InitLangStringList( RscCont * pStrLst ); RscTupel * InitStringTupel(); diff --git a/rsc/source/parser/rscibas.cxx b/rsc/source/parser/rscibas.cxx index d632ebdf3187..4860da4afd97 100644 --- a/rsc/source/parser/rscibas.cxx +++ b/rsc/source/parser/rscibas.cxx @@ -367,31 +367,6 @@ RscEnum * RscTypCont::InitTriState() return pTriState; } -RscTupel * RscTypCont::InitGeometry() -{ - RscTop * pTupel; - Atom nId; - - // Clientvariablen einfuegen - pTupel = new RscTupel( pHS->getID( "TupelDeltaSystem" ), - RSC_NOTYPE ); - nId = aNmTb.Put( "X", VARNAME ); - pTupel->SetVariable( nId, &aShort ); - nId = aNmTb.Put( "Y", VARNAME ); - pTupel->SetVariable( nId, &aShort ); - nId = aNmTb.Put( "WIDTH", VARNAME ); - pTupel->SetVariable( nId, &aShort ); - nId = aNmTb.Put( "HEIGHT", VARNAME ); - pTupel->SetVariable( nId, &aShort ); - - return static_cast<RscTupel *>(pTupel); -} - -RscArray * RscTypCont::InitLangGeometry( RscTupel * pGeo ) -{ - return new RscArray( pHS->getID( "Lang_TupelGeometry" ), RSC_NOTYPE, pGeo, &aLangType ); -} - RscCont * RscTypCont::InitStringList() { RscCont * pCont; diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx index fedf028b4bed..71a07aa8f24f 100644 --- a/rsc/source/parser/rscinit.cxx +++ b/rsc/source/parser/rscinit.cxx @@ -45,8 +45,6 @@ void RscTypCont::Init() RscEnum * pMapUnit; RscEnum * pKey; RscEnum * pTriState; - RscTupel * pGeometry; - RscArray * pLangGeometry; RscCont * pStringList; RscArray * pLangStringList; RscTupel * pStringTupel; @@ -99,8 +97,6 @@ void RscTypCont::Init() aBaseLst.push_back( pKey = InitKey() ); aBaseLst.push_back( pTriState = InitTriState() ); - aBaseLst.push_back( pGeometry = InitGeometry() ); - aBaseLst.push_back( pLangGeometry = InitLangGeometry( pGeometry ) ); aBaseLst.push_back( pStringList = InitStringList() ); aBaseLst.push_back( pLangStringList = InitLangStringList( pStringList ) ); aBaseLst.push_back( pStringTupel = InitStringTupel() ); |