Fixing the toolkit core's ShowWindow methods to not SHOW THE DAMN WINDOW

ON THEIR OWN.  Why are these %^*%^&%&^ methods still being used everywhere?
This commit is contained in:
hyatt%netscape.com 1999-07-05 17:01:55 +00:00
Родитель e84d9b8fb5
Коммит 644c475e40
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -216,9 +216,6 @@ nsToolkitCore::ShowWindow(const nsString& aUrl, nsIDOMWindow* aParent) {
appShell->CreateTopLevelWindow(parent, urlObj, PR_TRUE, getter_AddRefs(window),
nsnull, nsnull, NS_SIZETOCONTENT, NS_SIZETOCONTENT);
if (window)
window->Show(PR_TRUE);
return rv;
}
@ -341,9 +338,6 @@ nsToolkitCore::ShowWindowWithArgs(const nsString& aUrl,
appShell->CreateTopLevelWindow(parent, urlObj, PR_TRUE, getter_AddRefs(window),
nsnull, cb, NS_SIZETOCONTENT, NS_SIZETOCONTENT);
if (window)
window->Show(PR_TRUE);
return rv;
}