зеркало из https://github.com/mozilla/gecko-dev.git
Removing the delete operator from the interface. The IDL compiler will no longer generate these. So the next time the header files
were generated, the calls would have been removed anyway....
This commit is contained in:
Родитель
6d2fc0ea6e
Коммит
7bf69f5644
|
@ -20,9 +20,6 @@
|
|||
{ 0xB7, 0xEB, 0x00, 0x80, 0x5F, 0x05, 0xFF, 0xA5 }}
|
||||
|
||||
class nsINNTPArticleList : public nsISupports {
|
||||
private:
|
||||
void operator delete(void *); // NOT TO BE IMPLEMENTED
|
||||
|
||||
public:
|
||||
static const nsIID& IID() {
|
||||
static nsIID iid = NS_INNTPARTICLELIST_IID;
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
class nsINNTPCategoryContainer : public nsISupports {
|
||||
private:
|
||||
void operator delete(void *); // NOT TO BE IMPLEMENTED
|
||||
|
||||
public:
|
||||
static const nsIID& IID() {
|
||||
|
|
|
@ -20,9 +20,7 @@
|
|||
|
||||
class nsINNTPHost : public nsISupports {
|
||||
private:
|
||||
void operator delete(void *); // NOT TO BE IMPLEMENTED
|
||||
|
||||
public:
|
||||
public:
|
||||
static const nsIID& IID() {
|
||||
static nsIID iid = NS_INNTPHOST_IID;
|
||||
return iid;
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
class nsINNTPNewsgroup : public nsISupports {
|
||||
private:
|
||||
void operator delete(void *); // NOT TO BE IMPLEMENTED
|
||||
|
||||
public:
|
||||
static const nsIID& IID() {
|
||||
|
@ -28,42 +27,42 @@ class nsINNTPNewsgroup : public nsISupports {
|
|||
}
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetName(char * *aName) = 0;
|
||||
NS_IMETHOD GetName(char * *aName) const = 0;
|
||||
NS_IMETHOD SetName(char * aName) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetPrettyName(char * *aPrettyName) = 0;
|
||||
NS_IMETHOD GetPrettyName(char * *aPrettyName) const = 0;
|
||||
NS_IMETHOD SetPrettyName(char * aPrettyName) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetPassword(char * *aPassword) = 0;
|
||||
NS_IMETHOD GetPassword(char * *aPassword) const = 0;
|
||||
NS_IMETHOD SetPassword(char * aPassword) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetUsername(char * *aUsername) = 0;
|
||||
NS_IMETHOD GetUsername(char * *aUsername) const = 0;
|
||||
NS_IMETHOD SetUsername(char * aUsername) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetNeedsExtraInfo(PRBool *aNeedsExtraInfo) = 0;
|
||||
NS_IMETHOD GetNeedsExtraInfo(PRBool *aNeedsExtraInfo) const = 0;
|
||||
NS_IMETHOD SetNeedsExtraInfo(PRBool aNeedsExtraInfo) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD IsOfflineArticle(PRInt32 num, PRBool *_retval) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetCategory(PRBool *aCategory) = 0;
|
||||
NS_IMETHOD GetCategory(PRBool *aCategory) const = 0;
|
||||
NS_IMETHOD SetCategory(PRBool aCategory) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetSubscribed(PRBool *aSubscribed) = 0;
|
||||
NS_IMETHOD GetSubscribed(PRBool *aSubscribed) const = 0;
|
||||
NS_IMETHOD SetSubscribed(PRBool aSubscribed) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetWantNewTotals(PRBool *aWantNewTotals) = 0;
|
||||
NS_IMETHOD GetWantNewTotals(PRBool *aWantNewTotals) const = 0;
|
||||
NS_IMETHOD SetWantNewTotals(PRBool aWantNewTotals) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
NS_IMETHOD GetNewsgroupList(nsINNTPNewsgroupList * *aNewsgroupList) = 0;
|
||||
NS_IMETHOD GetNewsgroupList(nsINNTPNewsgroupList * *aNewsgroupList) const = 0;
|
||||
NS_IMETHOD SetNewsgroupList(nsINNTPNewsgroupList * aNewsgroupList) = 0;
|
||||
|
||||
/* <IDL> */
|
||||
|
|
|
@ -17,9 +17,6 @@
|
|||
{ 0xB7, 0xEA, 0x00, 0x80, 0x5F, 0x05, 0xFF, 0xA5 }}
|
||||
|
||||
class nsINNTPNewsgroupList : public nsISupports {
|
||||
private:
|
||||
void operator delete(void *); // NOT TO BE IMPLEMENTED
|
||||
|
||||
public:
|
||||
static const nsIID& IID() {
|
||||
static nsIID iid = NS_INNTPNEWSGROUPLIST_IID;
|
||||
|
|
Загрузка…
Ссылка в новой задаче