summaryrefslogtreecommitdiffstats
path: root/rsc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-30 16:01:45 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-31 10:43:23 +0100
commit47a81f3de584b91579491999577227ff90a247c7 (patch)
tree543f3e887edda1c12b466b90bf6f19358565c98c /rsc
parentgrabbag of unused code (diff)
downloadcore-47a81f3de584b91579491999577227ff90a247c7.tar.gz
core-47a81f3de584b91579491999577227ff90a247c7.zip
only thing that calls FillList is itself
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/misc/rscdbl.cxx10
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: */