From 25b0ee43b8b3cf1baa5bb9d671c3761c6eb54c4c Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 6 Sep 2015 21:07:06 -0700 Subject: [PATCH] add wx prefix in a couple places missed in 8f8d58d1 --- docs/doxygen/overviews/runtimeclass.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/doxygen/overviews/runtimeclass.h b/docs/doxygen/overviews/runtimeclass.h index f8450a13d8..2d67465ebc 100644 --- a/docs/doxygen/overviews/runtimeclass.h +++ b/docs/doxygen/overviews/runtimeclass.h @@ -72,8 +72,8 @@ record runtime information about a class, including: @li A string representation of the class name. @li A function that can be called to construct an instance of this class. -The DECLARE_... macros declare a static wxClassInfo variable in a class, which -is initialized by macros of the form IMPLEMENT_... in the implementation C++ +The wxDECLARE_... macros declare a static wxClassInfo variable in a class, which +is initialized by macros of the form wxIMPLEMENT_... in the implementation C++ file. Classes whose instances may be constructed dynamically are given a global constructor function which returns a new object.