mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
add registration of filter component, under ifdef control
This commit is contained in:
parent
ce3b3622a3
commit
4a637cc152
@ -440,8 +440,15 @@ NSRegisterSelf(nsISupports* aServMgr, const char* path)
|
|||||||
NS_RDF_DATASOURCE_PROGID_PREFIX "msgservers",
|
NS_RDF_DATASOURCE_PROGID_PREFIX "msgservers",
|
||||||
path, PR_TRUE, PR_TRUE);
|
path, PR_TRUE, PR_TRUE);
|
||||||
if (NS_FAILED(rv)) goto done;
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
#ifdef DEBUG_bienvenu
|
||||||
|
printf("register filter service\n");
|
||||||
|
rv = compMgr->RegisterComponent(kMsgFilterServiceCID,
|
||||||
|
"Message Filter Service", nsnull,
|
||||||
|
path, PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef NS_DEBUG
|
#ifdef NS_DEBUG
|
||||||
printf("mailnews registering from %s\n",path);
|
printf("mailnews registering from %s\n",path);
|
||||||
#endif
|
#endif
|
||||||
@ -493,6 +500,10 @@ NSUnregisterSelf(nsISupports* aServMgr, const char* path)
|
|||||||
if(NS_FAILED(rv)) goto done;
|
if(NS_FAILED(rv)) goto done;
|
||||||
rv = compMgr->UnregisterComponent(kMsgServerDataSourceCID, path);
|
rv = compMgr->UnregisterComponent(kMsgServerDataSourceCID, path);
|
||||||
if(NS_FAILED(rv)) goto done;
|
if(NS_FAILED(rv)) goto done;
|
||||||
|
#ifdef DEBUG_bienvenu
|
||||||
|
rv = compMgr->UnregisterComponent(kMsgFilterServiceCID, path);
|
||||||
|
if(NS_FAILED(rv)) goto done;
|
||||||
|
#endif
|
||||||
|
|
||||||
done:
|
done:
|
||||||
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user