]> git.saurik.com Git - wxWidgets.git/commitdiff
added asserts to Clone/CreateRefData()
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Feb 2002 12:30:40 +0000 (12:30 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Feb 2002 12:30:40 +0000 (12:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/object.cpp

index d502615e2717b5ebc310b1aaf127b8a294ebdfbf..96f54f4277e4f2b8edc3b894b1d7cc66e2dfec8a 100644 (file)
@@ -276,11 +276,17 @@ void wxObject::AllocExclusive()
 
 wxObjectRefData *wxObject::CreateRefData() const
 {
+    // if you use AllocExclusive() you must override this method
+    wxFAIL_MSG( _T("CreateRefData() must be overridden if called!") );
+
     return NULL;
 }
 
 wxObjectRefData *wxObject::CloneRefData(wxObjectRefData * WXUNUSED(data)) const
 {
+    // if you use AllocExclusive() you must override this method
+    wxFAIL_MSG( _T("CloneRefData() must be overridden if called!") );
+
     return NULL;
 }