Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Was using a private name from "nsCOMPtr.h" that happened to go away w…
Browse files Browse the repository at this point in the history
…ith this checkin. Should have been using |dont_QueryInterface()|, and now it does. r={danm, hyatt}
  • Loading branch information
scc%netscape.com committed Nov 8, 1999
1 parent 61336fa commit fe19761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpfe/AppCores/src/nsToolkitCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ nsToolkitCore::ShowWindowWithArgs(const nsString& aUrl,
nsCOMPtr<nsIWebShellWindow> parent;
DOMWindowToWebShellWindow(aParent, &parent);
nsCOMPtr<nsArgCallbacks> cb;
cb = nsDontQueryInterface<nsArgCallbacks>( new nsArgCallbacks( aArgs ) );
cb = dont_QueryInterface( new nsArgCallbacks( aArgs ) );

nsCOMPtr<nsIWebShellWindow> window;
appShell->CreateTopLevelWindow(parent, urlObj, PR_TRUE, PR_TRUE,
Expand Down

0 comments on commit fe19761

Please sign in to comment.