]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed some function/define paramter names to match old docs.
authorBryan Petty <bryan@ibaku.net>
Fri, 14 Mar 2008 08:05:31 +0000 (08:05 +0000)
committerBryan Petty <bryan@ibaku.net>
Fri, 14 Mar 2008 08:05:31 +0000 (08:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/app.h
interface/object.h

index a23aa4ea91493046432da4271ed5b7c147edce0f..33e501cd0dedf7f7a95bb7589533d953e7edd47c 100644 (file)
@@ -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 )
 
 //@}
 
index bc9e0663db9800293b2dacfe6926073a6da01f94..c56d9bba9156bc7e91634ee967d8e0d803b1242f 100644 (file)
@@ -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);
 
 //@}