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
This commit is contained in:
Bryan Petty
2008-03-14 08:05:31 +00:00
parent 8af7f7c125
commit 7baebf867b
2 changed files with 8 additions and 8 deletions

View File

@@ -626,7 +626,7 @@ public:
DECLARE_APP(MyApp) DECLARE_APP(MyApp)
@endcode @endcode
*/ */
#define DECLARE_APP( appClassName ) #define DECLARE_APP( className )
/** /**
This is used in the application class implementation file to make the This is used in the application class implementation file to make the
@@ -642,7 +642,7 @@ public:
@see DECLARE_APP(). @see DECLARE_APP().
*/ */
#define IMPLEMENT_APP( appClassName ) #define IMPLEMENT_APP( className )
//@} //@}

View File

@@ -449,7 +449,7 @@ public:
}; };
@endcode @endcode
*/ */
#define DECLARE_DYNAMIC_CLASS( name ) #define DECLARE_DYNAMIC_CLASS( className )
/** /**
Used in a C++ implementation file to complete the declaration of a class Used in a C++ implementation file to complete the declaration of a class
@@ -575,7 +575,7 @@ public:
@see wx_const_cast(), wxDynamicCast(), wxStaticCast() @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 This is defined in debug mode to be call the redefined new operator
@@ -619,7 +619,7 @@ public:
@see @ref overview_runtimeclassoverview "RTTI Overview", @see @ref overview_runtimeclassoverview "RTTI Overview",
wxDynamicCastThis(), wxConstCast(), wxStaticCast() wxDynamicCastThis(), wxConstCast(), wxStaticCast()
*/ */
#define wxDynamicCast( object, className ) #define wxDynamicCast( ptr, classname )
/** /**
This macro is equivalent to wxDynamicCast() but the latter provokes This macro is equivalent to wxDynamicCast() but the latter provokes
@@ -631,7 +631,7 @@ public:
@see wxDynamicCast() @see wxDynamicCast()
*/ */
#define wxDynamicCastThis( className ) #define wxDynamicCastThis( classname )
/** /**
This macro checks that the cast is valid in debug mode (an assert failure 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() @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 Creates and returns an object of the given class, if the class has been
@@ -651,7 +651,7 @@ public:
@header{wx/object.h} @header{wx/object.h}
*/ */
wxObject *wxCreateDynamicObject(const wxString& name); wxObject *wxCreateDynamicObject(const wxString& className);
//@} //@}