allow early password dialog access to the mouse. probably bug 93715, certainly bug 110098. a:don

This commit is contained in:
danm 1998-06-10 03:00:05 +00:00
parent 88ec8b622b
commit b9f2000cc6

View File

@ -33,16 +33,12 @@ char *sux_PromptPassword(MWContext *pContext, const char *pMessage) {
char *pWinMessage = FE_Windowsify(pMessage);
if(pWinMessage) {
CWnd desktop;
desktop.Attach(::GetDesktopWindow());
CDialogPASS dlgPass(&desktop);
CDialogPASS dlgPass;
theApp.m_splash.SafeHide();
pRetval = dlgPass.DoModal(pWinMessage);
XP_FREE(pWinMessage);
pWinMessage = NULL;
desktop.Detach();
}
return(pRetval);