From 936ed583e648a762b7e485c15d08aa380505c4e5 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 24 Nov 2016 13:24:34 +0000 Subject: these geometry things go nowhere now Change-Id: If98ca8acccececeff2b335f90d3ef6082f2053d0 --- rsc/inc/rscdb.hxx | 2 -- rsc/source/parser/rscibas.cxx | 25 ------------------------- rsc/source/parser/rscinit.cxx | 4 ---- 3 files changed, 31 deletions(-) (limited to 'rsc') 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(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() ); -- cgit