]> git.saurik.com Git - wxWidgets.git/commitdiff
use rtti as shortcut for runtime type information
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 3 Mar 2008 12:22:53 +0000 (12:22 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 3 Mar 2008 12:22:53 +0000 (12:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52284 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/mainpages/topics.h
docs/doxygen/overviews/runtimeclass.h

index ca9ffeb10850032509f0b91fffcca3a9b37cd495..c4a58b7bf0d972c6df88be5d2a8192617cac22f9 100644 (file)
@@ -34,7 +34,7 @@ The following is a basic categorization of them:
 @section page_topics_programming Programming with wxWidgets
 
 @li @subpage overview_backwardcompat
-@li @subpage overview_runtimeclass
+@li @subpage overview_rtti
 @li @subpage overview_refcount
 @li @subpage overview_app
 @li @subpage overview_unicode
index 39ee9cfdf4812952b6699bbf5bf9f63c7cec91ef..6b7add1e452a72d77056d05755788f8cad5f6f1e 100644 (file)
@@ -8,11 +8,11 @@
 
 /*!
 
-@page overview_runtimeclass Runtime Class Information (RTTI)
+@page overview_rtti Runtime Class Information (RTTI)
 
-@li @ref overview_runtimeclass_intro
-@li @ref overview_runtimeclass_classinfo
-@li @ref overview_runtimeclass_example
+@li @ref overview_rtti_intro
+@li @ref overview_rtti_classinfo
+@li @ref overview_rtti_example
 
 @seealso
 
@@ -23,7 +23,7 @@
 <hr>
 
 
-@section overview_runtimeclass_intro Introduction
+@section overview_rtti_intro Introduction
 
 One of the failings of C++ used to be that no run-time information was provided
 about a class and its position in the inheritance hierarchy. Another, which
@@ -73,7 +73,7 @@ given type, by supplying a string name. If you have a pointer to the
 wxClassInfo object instead, then you can simply call wxClassInfo::CreateObject.
 
 
-@section overview_runtimeclass_classinfo wxClassInfo
+@section overview_rtti_classinfo wxClassInfo
 
 This class stores meta-information about classes. An application may use macros
 such as DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS to record run-time
@@ -99,7 +99,7 @@ wxObject::GetClassInfo.
 @li wxCreateDynamicObject
 
 
-@section overview_runtimeclass_example Example
+@section overview_rtti_example Example
 
 In a header file frame.h: