]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/custclas.h
XRC spec: document wxRibbon* XRC handler.
[wxWidgets.git] / samples / xrc / custclas.h
index 9973ed0161aaac7310f40af33e5db6d065ac9ca0..585f81597f5c686a89521b93c48760bf3edea0ea 100644 (file)
@@ -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
 //-----------------------------------------------------------------------------
 #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,8 +59,8 @@ public:
                          const wxString &name = wxT("myResizableListCtrl")
                        );
 
-    // Destuctor.
-    ~MyResizableListCtrl();
+    // Destructor.
+    ~MyResizableListCtrl(){};
 
 protected: