зеркало из https://github.com/mozilla/gecko-dev.git
update this interface, rename CreateAndInit->CreateAndInitialize
This commit is contained in:
Родитель
6b3e340e14
Коммит
8241bb996c
|
@ -28,6 +28,18 @@ class nsIMsgCompose : public nsISupports {
|
|||
return iid;
|
||||
}
|
||||
|
||||
/* void CreateAndInitialize (in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master); */
|
||||
NS_IMETHOD CreateAndInitialize(PRInt32 a_context, PRInt32 old_context, PRInt32 prefs, nsIMsgCompFields *initfields, PRInt32 master) = 0;
|
||||
|
||||
/* void Create (in long a_context, in long prefs, in long master); */
|
||||
NS_IMETHOD Create(PRInt32 a_context, PRInt32 prefs, PRInt32 master) = 0;
|
||||
|
||||
/* void Initialize (in long old_context, in nsIMsgCompFields initfields); */
|
||||
NS_IMETHOD Initialize(PRInt32 old_context, nsIMsgCompFields *initfields) = 0;
|
||||
|
||||
/* void Dispose (); */
|
||||
NS_IMETHOD Dispose() = 0;
|
||||
|
||||
#ifdef XPIDL_JS_STUBS
|
||||
static NS_EXPORT_(JSObject *) InitJSClass(JSContext *cx);
|
||||
static NS_EXPORT_(JSObject *) GetJSObject(JSContext *cx, nsIMsgCompose *priv);
|
||||
|
|
|
@ -23,11 +23,9 @@
|
|||
[object, uuid(4E606270-B588-11D2-8289-00805F2A0107)]
|
||||
interface nsIMsgCompose : nsISupports {
|
||||
|
||||
/*
|
||||
void CreateAndInit(in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master);
|
||||
void CreateAndInitialize(in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master);
|
||||
void Create(in long a_context, in long prefs, in long master);
|
||||
void Initialize(in long old_context, in nsIMsgCompFields initfields);
|
||||
void Dispose();
|
||||
*/
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче