MCPcopy Create free account
hub / github.com/cinience/RedisStudio / FindSubControlsByClass

Method FindSubControlsByClass

DuiLib/Core/UIManager.cpp:2085–2092  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2083}
2084
2085CStdPtrArray* CPaintManagerUI::FindSubControlsByClass(CControlUI* pParent, LPCTSTR pstrClass)
2086{
2087 if( pParent == NULL ) pParent = GetRoot();
2088 ASSERT(pParent);
2089 m_aFoundControls.Empty();
2090 pParent->FindControl(__FindControlsFromClass, (LPVOID)pstrClass, UIFIND_ALL);
2091 return &m_aFoundControls;
2092}
2093
2094CStdPtrArray* CPaintManagerUI::GetSubControlsByClass()
2095{

Callers

nothing calls this directly

Calls 2

EmptyMethod · 0.45
FindControlMethod · 0.45

Tested by

no test coverage detected