]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/custclas.h
Fix wrong configure test for abi::__forced_unwind in previous commit.
[wxWidgets.git] / samples / xrc / custclas.h
index 9973ed0161aaac7310f40af33e5db6d065ac9ca0..1072f6b9febcc793506b2e63a90dca8adccfd680 100644 (file)
 #ifndef _CUSTCLAS_H_
 #define _CUSTCLAS_H_
 
-//----------------------------------------------------------------------------------------
-// GCC interface
-//----------------------------------------------------------------------------------------
-
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma interface "custclas.h"
-#endif
-
 //----------------------------------------------------------------------------------------
 // Headers
 //----------------------------------------------------------------------------------------
@@ -36,7 +28,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 +60,8 @@ public:
                          const wxString &name = wxT("myResizableListCtrl")
                        );
 
-    // Destuctor.
-    ~MyResizableListCtrl();
+    // Destructor.
+    ~MyResizableListCtrl(){};
 
 protected: