From: Bryan Petty Date: Fri, 14 Mar 2008 08:05:31 +0000 (+0000) Subject: Fixed some function/define paramter names to match old docs. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7baebf867beae3c8c1d8fde40e4ef4cd13e2e63d?ds=inline Fixed some function/define paramter names to match old docs. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/app.h b/interface/app.h index a23aa4ea91..33e501cd0d 100644 --- a/interface/app.h +++ b/interface/app.h @@ -626,7 +626,7 @@ public: DECLARE_APP(MyApp) @endcode */ -#define DECLARE_APP( appClassName ) +#define DECLARE_APP( className ) /** This is used in the application class implementation file to make the @@ -642,7 +642,7 @@ public: @see DECLARE_APP(). */ -#define IMPLEMENT_APP( appClassName ) +#define IMPLEMENT_APP( className ) //@} diff --git a/interface/object.h b/interface/object.h index bc9e0663db..c56d9bba91 100644 --- a/interface/object.h +++ b/interface/object.h @@ -449,7 +449,7 @@ public: }; @endcode */ -#define DECLARE_DYNAMIC_CLASS( name ) +#define DECLARE_DYNAMIC_CLASS( className ) /** Used in a C++ implementation file to complete the declaration of a class @@ -575,7 +575,7 @@ public: @see wx_const_cast(), wxDynamicCast(), wxStaticCast() */ -#define wxConstCast( object, className ) +#define wxConstCast( ptr, classname ) /** This is defined in debug mode to be call the redefined new operator @@ -619,7 +619,7 @@ public: @see @ref overview_runtimeclassoverview "RTTI Overview", wxDynamicCastThis(), wxConstCast(), wxStaticCast() */ -#define wxDynamicCast( object, className ) +#define wxDynamicCast( ptr, classname ) /** This macro is equivalent to wxDynamicCast() but the latter provokes @@ -631,7 +631,7 @@ public: @see wxDynamicCast() */ -#define wxDynamicCastThis( className ) +#define wxDynamicCastThis( classname ) /** This macro checks that the cast is valid in debug mode (an assert failure @@ -642,7 +642,7 @@ public: @see wx_static_cast(), wxDynamicCast(), wxConstCast() */ -#define wxStaticCast( object, className ) +#define wxStaticCast( ptr, classname ) /** Creates and returns an object of the given class, if the class has been @@ -651,7 +651,7 @@ public: @header{wx/object.h} */ -wxObject *wxCreateDynamicObject(const wxString& name); +wxObject *wxCreateDynamicObject(const wxString& className); //@}