Casting fix for events. Needs check by ARM eVC4 users.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32686 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-03-08 20:53:16 +00:00
parent 656dad21d8
commit 8bc3ec1ff5
11 changed files with 52 additions and 61 deletions

View File

@@ -284,7 +284,7 @@ public:
// Set the tooltip for the item (for EVT\_TREE\_ITEM\_GETTOOLTIP events)
void SetToolTip(const wxString& toolTip) { m_label = toolTip; }
wxString GetToolTip() { return m_label; }
#if WXWIN_COMPATIBILITY_2_2
// for compatibility only, don't use
wxDEPRECATED( int GetCode() const);
@@ -336,7 +336,7 @@ BEGIN_DECLARE_EVENT_TYPES()
END_DECLARE_EVENT_TYPES()
#define wxTreeEventHandler(func) \
(wxObjectEventFunction)wxStaticCastEvent(wxTreeEventFunction, &func)
(wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxTreeEventFunction, &func)
#define wx__DECLARE_TREEEVT(evt, id, fn) \
wx__DECLARE_EVT1(wxEVT_COMMAND_TREE_ ## evt, id, wxTreeEventHandler(fn))