commitmonitor Code
Monitor your SVN repositories and notifies you on new commits
Brought to you by:
steveking
--- a/trunk/src/BaseDialog.cpp +++ b/trunk/src/BaseDialog.cpp @@ -6,6 +6,12 @@ { hResource = hInstance; return DialogBoxParam(hInstance, MAKEINTRESOURCE(resID), hWndParent, &CDialog::stDlgFunc, (LPARAM)this); +} + +HWND CDialog::Create(HINSTANCE hInstance, int resID, HWND hWndParent) +{ + m_hwnd = CreateDialogParam(hInstance, MAKEINTRESOURCE(resID), hWndParent, &CDialog::stDlgFunc, (LPARAM)this); + return m_hwnd; } void CDialog::InitDialog(HWND hwndDlg, UINT iconID)