Bug 106445 - clicking url in mail doesn't focus browser window. r=jst, sr=hyatt.

This commit is contained in:
bryner%netscape.com 2001-11-27 01:22:34 +00:00
Родитель a2b40eee12
Коммит 6c17c78d35
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -25,6 +25,7 @@
#include "nsIChannel.h"
#include "nsXPIDLString.h"
#include "nsIServiceManager.h"
#include "nsIDOMWindowInternal.h"
//*****************************************************************************
//*** nsDSURIContentListener: Object Management
@ -108,8 +109,10 @@ nsDSURIContentListener::DoContent(const char* aContentType,
return NS_OK;
}
if(loadFlags & nsIChannel::LOAD_RETARGETED_DOCUMENT_URI)
mDocShell->SetFocus();
if (loadFlags & nsIChannel::LOAD_RETARGETED_DOCUMENT_URI) {
nsCOMPtr<nsIDOMWindowInternal> domWindow = do_GetInterface(NS_STATIC_CAST(nsIDocShell*, mDocShell));
domWindow->Focus();
}
return NS_OK;
}