]> git.saurik.com Git - wxWidgets.git/commitdiff
derive wxConfig classes from wxObject and add wxRTTI macros to them (patch 1587607)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 Mar 2007 02:29:44 +0000 (02:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 Mar 2007 02:29:44 +0000 (02:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44753 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/confbase.h

index 698e94b895dc9448e0c910e5b971365dabe95ddb..2255d73f29962feb461d3a012be05899792350b2 100644 (file)
@@ -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