MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / FillFromList

Method FillFromList

editor/TableManage.cpp:309–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307}
308
309bool GenericPageList::FillFromList(CComboBox *list) {
310 GenericPageNode *node;
311
312 list->ResetContent();
313
314 node = m_head;
315 while (node != NULL) {
316 list->InsertString(-1, node->genericpage.objinfo_struct.name);
317 node = node->next;
318 }
319
320 // Select the start of the list
321 SelectNode(0);
322
323 return TRUE;
324}
325
326void GenericPageList::SelectNext(void) {
327 if (m_SelectedNode == NULL)

Callers 1

OnTableEditFileLoadMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected