diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-30 16:01:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-31 10:43:23 +0100 |
commit | 47a81f3de584b91579491999577227ff90a247c7 (patch) | |
tree | 543f3e887edda1c12b466b90bf6f19358565c98c /rsc/source | |
parent | 8de61c9fb6a4c3be54b51c575fcffcec2067e090 (diff) |
only thing that calls FillList is itself
Diffstat (limited to 'rsc/source')
-rw-r--r-- | rsc/source/misc/rscdbl.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/rsc/source/misc/rscdbl.cxx b/rsc/source/misc/rscdbl.cxx index 8de91ae9dbbd..aeac4ba4399e 100644 --- a/rsc/source/misc/rscdbl.cxx +++ b/rsc/source/misc/rscdbl.cxx @@ -95,14 +95,4 @@ void FillListObj( ObjNode * pObjNode, RscTop * pRscTop, }; } -void FillList( RscTop * pRscTop, REResourceList * pList, sal_uLong lFileKey ){ - if( pRscTop ){ - FillList( (RscTop*)pRscTop->Left(), pList, lFileKey ); - - FillListObj( pRscTop->GetObjNode(), pRscTop, pList, lFileKey ); - - FillList( (RscTop*)pRscTop->Right(), pList, lFileKey ); - }; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |