X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..f6ac9c62401b35980d693cc7fef5ccd5bcb6015a:/samples/xrc/custclas.h diff --git a/samples/xrc/custclas.h b/samples/xrc/custclas.h index aebc043ee0..585f81597f 100644 --- a/samples/xrc/custclas.h +++ b/samples/xrc/custclas.h @@ -2,7 +2,6 @@ // Name: custclas.h // Purpose: XML resources sample: A custom class to insert into a XRC file // Author: Robert O'Connor (rob@medicalmnemonics.com), Vaclav Slavik -// RCS-ID: $Id$ // Copyright: (c) Robert O'Connor and Vaclav Slavik // Licence: wxWindows licence //----------------------------------------------------------------------------- @@ -28,7 +27,7 @@ class MyResizableListCtrl : public wxListCtrl { // Very helpful wxWidgets macro required for wxWidgets-RTTI tracing: By using this - // you will see "Leaked one object of type myResizeableListCtrl" in the debug log, + // you will see "Leaked one object of type myResizableListCtrl" in the debug log, // along with which line you if was created, but you forget to free the memory. // NOTE: Using this REQUIRES a default constructor: that means either: giving a // default value for all parameters in your constructor, or else having a dummy @@ -60,7 +59,7 @@ public: const wxString &name = wxT("myResizableListCtrl") ); - // Destuctor. + // Destructor. ~MyResizableListCtrl(){}; protected: