From: Ron Lee Date: Wed, 19 Dec 2001 19:16:46 +0000 (+0000) Subject: Fixed silly cut n paste error. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/38befbee1aae990a69e4556a75c93eb1cc910a50 Fixed silly cut n paste error. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/object.h b/include/wx/object.h index 3384b88562..e1ed101a37 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -56,11 +56,11 @@ typedef wxObject *(*wxObjectConstructorFn)(void); class WXDLLEXPORT wxClassInfo { public: - wxClassInfo::wxClassInfo(const wxChar *className, - const wxChar *baseName1, - const wxChar *baseName2, - int size, - wxObjectConstructorFn ctor) + wxClassInfo( const wxChar *className, + const wxChar *baseName1, + const wxChar *baseName2, + int size, + wxObjectConstructorFn ctor ) : m_className(className) , m_baseClassName1(baseName1) , m_baseClassName2(baseName2)