| 1274 | |
| 1275 | |
| 1276 | BOOL CWndResizer::CreateFlowLayoutPanel(LPCTSTR panelName, const CRect * prcPanel) |
| 1277 | { |
| 1278 | if (FindPanelByName(&root, panelName) != NULL) |
| 1279 | { |
| 1280 | return FALSE; |
| 1281 | } |
| 1282 | |
| 1283 | CPanel * pPanel = new CFlowLayoutPanel(prcPanel); |
| 1284 | pPanel->Name = panelName; |
| 1285 | return root.AddChild(pPanel); |
| 1286 | |
| 1287 | } |
| 1288 | BOOL CWndResizer::CreateFlowLayoutPanel(LPCTSTR panelName, const CUIntArray * parrID, BOOL setAsChildren) |
| 1289 | { |
| 1290 | ASSERT(m_pHookedWnd != NULL); |
nothing calls this directly
no test coverage detected