summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-30 16:02:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-31 10:43:23 +0100
commitbbf17fad476b9f05e12e0e96e93070e51e0facce (patch)
tree102e5f281dcebdf774649f33013d5e50929d5467 /rsc
parent47a81f3de584b91579491999577227ff90a247c7 (diff)
only thing left that calls FillListObj is itself
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/misc/rscdbl.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/rsc/source/misc/rscdbl.cxx b/rsc/source/misc/rscdbl.cxx
index aeac4ba4399e..874b33a0383d 100644
--- a/rsc/source/misc/rscdbl.cxx
+++ b/rsc/source/misc/rscdbl.cxx
@@ -71,28 +71,4 @@ void FillSubList( RSCINST & rInst, REResourceList * pList )
};
}
-void FillListObj( ObjNode * pObjNode, RscTop * pRscTop,
- REResourceList * pList, sal_uLong lFileKey )
-{
- if( pObjNode ){
- if( pObjNode->GetFileKey() == lFileKey ){
- RSCINST aTmpI;
- REResourceList* pSubList;
-
- FillListObj( (ObjNode*)pObjNode->Left(), pRscTop,
- pList, lFileKey );
-
- pSubList = InsertList( pRscTop->GetId(),
- pObjNode->GetRscId(), pList );
-
- aTmpI.pClass = pRscTop;
- aTmpI.pData = pObjNode->GetRscObj();
- FillSubList( aTmpI, pSubList );
-
- FillListObj( (ObjNode*)pObjNode->Right(), pRscTop,
- pList, lFileKey );
- }
- };
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */