]> git.saurik.com Git - wxWidgets.git/commitdiff
Add wxPGCanvas RTTI for debugging purpose
authorRobert Roebling <robert@roebling.de>
Tue, 30 Sep 2008 11:25:54 +0000 (11:25 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 30 Sep 2008 11:25:54 +0000 (11:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/propgrid/propgrid.cpp

index 7e08170b36e55e9f05081941230fa94754045aa0..c841b1e7f511fadcead7c61493ad1bc983543274 100644 (file)
@@ -421,12 +421,15 @@ protected:
     }
 
     void OnPaint( wxPaintEvent& event );
-
+    
 private:
     DECLARE_EVENT_TABLE()
+    DECLARE_ABSTRACT_CLASS(wxPGCanvas)
 };
 
 
+IMPLEMENT_ABSTRACT_CLASS(wxPGCanvas,wxPanel)
+
 BEGIN_EVENT_TABLE(wxPGCanvas, wxPanel)
     EVT_MOTION(wxPGCanvas::OnMouseMove)
     EVT_PAINT(wxPGCanvas::OnPaint)