Changed CocoaNotification parameter names to notification from userInfo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2003-09-05 14:59:51 +00:00
parent bcf0148786
commit af27ce842e

View File

@@ -34,11 +34,11 @@ public:
, OBSERVE_DidSendAction = 0x08 , OBSERVE_DidSendAction = 0x08
, OBSERVE_WillSendAction = 0x10 , OBSERVE_WillSendAction = 0x10
}; };
void CocoaNotification_menuDidAddItem(WX_NSNotification userInfo) {} void CocoaNotification_menuDidAddItem(WX_NSNotification notification) {}
void CocoaNotification_menuDidChangeItem(WX_NSNotification userInfo) {} void CocoaNotification_menuDidChangeItem(WX_NSNotification notification) {}
void CocoaNotification_menuDidRemoveItem(WX_NSNotification userInfo) {} void CocoaNotification_menuDidRemoveItem(WX_NSNotification notification) {}
void CocoaNotification_menuDidSendAction(WX_NSNotification userInfo) {} void CocoaNotification_menuDidSendAction(WX_NSNotification notification) {}
void CocoaNotification_menuWillSendAction(WX_NSNotification userInfo) {} void CocoaNotification_menuWillSendAction(WX_NSNotification notification) {}
protected: protected:
static struct objc_object *sm_cocoaObserver; static struct objc_object *sm_cocoaObserver;
}; };