Browse Source

fix property sheet initialization

pull/1/head
Heiko Hund 13 years ago
parent
commit
4725798de6
  1. 6
      main.c

6
main.c

@ -405,6 +405,12 @@ LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM
static INT_PTR CALLBACK
AboutDialogFunc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
LPPSHNOTIFY psn;
if (msg == WM_NOTIFY) {
psn = (LPPSHNOTIFY) lParam;
if (psn->hdr.code == (UINT) PSN_APPLY)
return TRUE;
}
return FALSE;
}

Loading…
Cancel
Save