From: Vadim Zeitlin Date: Sun, 11 Mar 2007 02:29:44 +0000 (+0000) Subject: derive wxConfig classes from wxObject and add wxRTTI macros to them (patch 1587607) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/412b97cc9a807ebcecefb403c949597a9f3d2199 derive wxConfig classes from wxObject and add wxRTTI macros to them (patch 1587607) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44753 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/confbase.h b/include/wx/confbase.h index 698e94b895..2255d73f29 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -72,7 +72,7 @@ enum // (long) type (TODO doubles and other types such as wxDate coming soon). // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_BASE wxConfigBase +class WXDLLIMPEXP_BASE wxConfigBase : public wxObject { public: // constants @@ -295,6 +295,8 @@ private: // Style flag long m_style; + + DECLARE_ABSTRACT_CLASS(wxConfigBase) }; // a handy little class which changes current path to the path of given entry