From: Paul Cornett Date: Thu, 19 Feb 2009 17:44:49 +0000 (+0000) Subject: remove unnecessary cast, that type should match X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/32bb5309eb76cea4a48657328eaed1467a99ac43?ds=sidebyside remove unnecessary cast, that type should match git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/object.h b/include/wx/object.h index b5f34262d6..26c3c0271c 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -190,7 +190,7 @@ WXDLLIMPEXP_BASE wxObject *wxCreateDynamicObject(const wxString& name); &basename::ms_classInfo, \ baseclsinfo2, \ (int) sizeof(name), \ - (wxObjectConstructorFn) func); \ + func); \ \ wxClassInfo *name::GetClassInfo() const \ { return &name::ms_classInfo; }