X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/925e9792d32e353233985f53a4845f154e455a58..f6ac9c62401b35980d693cc7fef5ccd5bcb6015a:/samples/xrc/custclas.h?ds=sidebyside diff --git a/samples/xrc/custclas.h b/samples/xrc/custclas.h index 9f13053fc3..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 //----------------------------------------------------------------------------- @@ -14,14 +13,6 @@ #ifndef _CUSTCLAS_H_ #define _CUSTCLAS_H_ -//---------------------------------------------------------------------------------------- -// GCC interface -//---------------------------------------------------------------------------------------- - -#if defined(__GNUG__) && !defined(__APPLE__) - #pragma interface "custclas.h" -#endif - //---------------------------------------------------------------------------------------- // Headers //---------------------------------------------------------------------------------------- @@ -36,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 @@ -68,7 +59,7 @@ public: const wxString &name = wxT("myResizableListCtrl") ); - // Destuctor. + // Destructor. ~MyResizableListCtrl(){}; protected: