Converted calls to nsIWebShell::LoadURL to use nsIWebNavigation::LoadURI.

This commit is contained in:
tbogard%aol.net 2000-03-16 02:30:51 +00:00
Родитель db828efb04
Коммит 6e3cade5eb
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -60,6 +60,7 @@
#include "nsIDocShell.h"
#include "nsIDocShellTreeItem.h"
#include "nsIDocShellTreeNode.h"
#include "nsIWebNavigation.h"
// mail
#include "nsMsgUtils.h"
@ -395,8 +396,9 @@ nsMessenger::OpenURL(const char * url)
else
{
nsAutoString urlStr(unescapedUrl);
if (mWebShell)
mWebShell->LoadURL(urlStr.GetUnicode());
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mWebShell));
if(webNav)
webNav->LoadURI(urlStr.GetUnicode());
}
PL_strfree(unescapedUrl);
}