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