diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-30 16:02:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-31 10:43:24 +0100 |
commit | 922b8a498ecfa7098cbf587abe00e3f4e6987d68 (patch) | |
tree | b56cac94bd5cc9264fae43f050aac952ef1fd949 /rsc | |
parent | bbf17fad476b9f05e12e0e96e93070e51e0facce (diff) |
only thing left that calls FillSubList is itself
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/misc/rscdbl.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/rsc/source/misc/rscdbl.cxx b/rsc/source/misc/rscdbl.cxx index 874b33a0383d..8cce92b20034 100644 --- a/rsc/source/misc/rscdbl.cxx +++ b/rsc/source/misc/rscdbl.cxx @@ -54,21 +54,4 @@ REResourceList * InsertList( Atom nClassName, const RscId& rId, return pSubList; } -void FillSubList( RSCINST & rInst, REResourceList * pList ) -{ - sal_uInt32 nCount, i; - SUBINFO_STRUCT aInfo; - REResourceList* pSubList; - RSCINST aTmpI; - - nCount = rInst.pClass->GetCount( rInst ); - for( i = 0; i < nCount; i++ ){ - aInfo = rInst.pClass->GetInfoEle( rInst, i ); - aTmpI = rInst.pClass->GetPosEle( rInst, i ); - pSubList = InsertList( aInfo.pClass->GetId(), - aInfo.aId, pList ); - FillSubList( aTmpI, pSubList ); - }; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |