diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-01-23 21:03:53 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-01-23 21:03:53 -0800 |
commit | 4cb4e600b5fc20e21326cfa03af080a668643f4e (patch) | |
tree | 9f8b9c9bf3dd106cce2906b422c1cb4b3c3b4e3b /rsc/source/res/rsctop.cxx | |
parent | 8650fdf601176d00cae9bf49b9932257095c3f43 (diff) |
Remove DECLARE_LIST( RscInconsList, RscInconsistent* )
Diffstat (limited to 'rsc/source/res/rsctop.cxx')
-rw-r--r-- | rsc/source/res/rsctop.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/rsc/source/res/rsctop.cxx b/rsc/source/res/rsctop.cxx index 7bb0cf707eff..a3305412da10 100644 --- a/rsc/source/res/rsctop.cxx +++ b/rsc/source/res/rsctop.cxx @@ -518,11 +518,10 @@ void RscTop::Destroy( const RSCINST & rInst ){ |* RscTop::IsConsistent() |* *************************************************************************/ -BOOL RscTop::IsConsistent( const RSCINST & rInst, - RscInconsList * pList ) +BOOL RscTop::IsConsistent( const RSCINST & rInst ) { if( pSuperClass ) - return pSuperClass->IsConsistent( rInst, pList ); + return pSuperClass->IsConsistent( rInst ); else return TRUE; } |