accidentally referenced old function name

This commit is contained in:
freedom7341
2023-10-04 12:37:23 -06:00
parent 51e907a7d0
commit e6b36b3b94
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ BOOL CALLBACK NewGroupDlgProc(HWND hWndDlg, UINT message, WPARAM wParam, LPARAM
grp.rcGroup.left = grp.rcGroup.top = grp.rcGroup.right = grp.rcGroup.bottom = CW_USEDEFAULT; grp.rcGroup.left = grp.rcGroup.top = grp.rcGroup.right = grp.rcGroup.bottom = CW_USEDEFAULT;
// Group's ready! // Group's ready!
if (CreateGroupWindow(grp) != NULL) if (CreateGroup(grp) != NULL)
{ {
EndDialog(hWndDlg, FALSE); EndDialog(hWndDlg, FALSE);
break; break;

View File

@@ -71,7 +71,7 @@ BOOL InitializeGroups(VOID)
if (!RegisterClassEx(&wce)) if (!RegisterClassEx(&wce))
return FALSE; return FALSE;
// CreateGroupWindow(NULL); // CreateGroup(NULL);
return TRUE; return TRUE;
} }