MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / ClearHidden

Method ClearHidden

ReClass/ReClassEx.cpp:543–572  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

541}
542
543void CReClassExApp::ClearHidden( )
544{
545 for (UINT i = 0; i < m_Classes.size( ); i++)
546 {
547 m_Classes[i]->Show( );
548 for (UINT n = 0; n < m_Classes[i]->NodeCount( ); n++)
549 {
550 CNodeBase* pNode = m_Classes[i]->GetNode( n );
551 pNode->Show( );
552
553 NodeType nt = pNode->GetType( );
554 if (nt == nt_vtable)
555 {
556 CNodeVTable* pVTable = (CNodeVTable*)pNode;
557 for (UINT f = 0; f < pVTable->NodeCount( ); f++)
558 pVTable->GetNode( f )->Show( );
559 }
560 if (nt == nt_array)
561 {
562 CNodeArray* pArray = (CNodeArray*)pNode;
563 pArray->Show( );
564 }
565 if (nt == nt_pointer)
566 {
567 CNodePtr* pPtr = (CNodePtr*)pNode;
568 pPtr->Show( );
569 }
570 }
571 }
572}
573
574bool CReClassExApp::IsNodeValid( CNodeBase* pCheckNode )
575{

Callers 1

OnModifyShowMethod · 0.80

Calls 5

NodeCountMethod · 0.80
GetNodeMethod · 0.80
GetTypeMethod · 0.80
sizeMethod · 0.45
ShowMethod · 0.45

Tested by

no test coverage detected