bug 384194 - close box in upper right of windows breakpad client doesn't close the reporter. r=campd

This commit is contained in:
ted.mielczarek@gmail.com 2007-11-28 11:40:08 -08:00
Родитель 3383cefd86
Коммит 374412446b
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -672,6 +672,10 @@ static BOOL CALLBACK CrashReporterDialogProc(HWND hwndDlg, UINT message,
EndCrashReporterDialog(hwndDlg, success ? 1 : 0);
return TRUE;
}
case WM_CLOSE: {
EndCrashReporterDialog(hwndDlg, 0);
return FALSE;
}
}
return FALSE;
}