Fixing the auto-generated file since the IDL changed.
git-svn-id: svn://10.0.0.236/trunk@20247 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -35,16 +35,20 @@ public:
|
||||
static const nsIID& IID() { static nsIID iid = NS_IDOMXULBROADCASTLISTENER_IID; return iid; }
|
||||
|
||||
NS_IMETHOD GetBroadcaster(nsIDOMNode** aNode)=0;
|
||||
|
||||
NS_IMETHOD SetBroadcaster(nsIDOMNode* aNode)=0;
|
||||
};
|
||||
|
||||
|
||||
#define NS_DECL_IDOMXULBROADCASTLISTENER \
|
||||
NS_IMETHOD GetBroadcaster(nsIDOMNode** aNode); \
|
||||
NS_IMETHOD SetBroadcaster(nsIDOMNode* aNode); \
|
||||
|
||||
|
||||
|
||||
#define NS_FORWARD_IDOMXULBROADCASTLISTENER(_to) \
|
||||
NS_IMETHOD GetBroadcaster(nsIDOMNode** aNode) { return _to##GetBroadcaster(aNode); } \
|
||||
NS_IMETHOD SetBroadcaster(nsIDOMNode* aNode) { return _to##SetBroadcaster(aNode); } \
|
||||
|
||||
|
||||
extern nsresult NS_InitXULBroadcastListenerClass(nsIScriptContext *aContext, void **aPrototype);
|
||||
|
||||
Reference in New Issue
Block a user