removed errant |QueryInterface()|s in favor of appropriate macros, as part of bug#23737. Changed |NS_DEFINE_IID| to |NS_DEFINE_CID| where appropriate; or else removed it, and fixed up clients to use |NS_GET_IID| in the appropriate spots. Built and ran pre-checkin tests. r=pinkerton

git-svn-id: svn://10.0.0.236/trunk@59313 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
scc%netscape.com
2000-01-31 23:45:42 +00:00
parent 11bee2e856
commit 21c1012e1b
22 changed files with 80 additions and 299 deletions

View File

@@ -28,8 +28,7 @@
#include "nsAppShellCIDs.h"
static NS_DEFINE_IID(kIScriptExternalNameSetIID, NS_ISCRIPTEXTERNALNAMESET_IID);
static NS_DEFINE_IID(kXPConnectFactoryCID, NS_XPCONNECTFACTORY_CID);
static NS_DEFINE_CID(kXPConnectFactoryCID, NS_XPCONNECTFACTORY_CID);
nsAppShellNameSet::nsAppShellNameSet()
{
@@ -40,7 +39,7 @@ nsAppShellNameSet::~nsAppShellNameSet()
{
}
NS_IMPL_ISUPPORTS(nsAppShellNameSet, kIScriptExternalNameSetIID);
NS_IMPL_ISUPPORTS1(nsAppShellNameSet, nsIScriptExternalNameSet);