]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/custclas.h
Line endings fixes in bakefile-generated files.
[wxWidgets.git] / samples / xrc / custclas.h
index 9f13053fc36215499ea67094f1cbb9b5349f255a..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,7 +60,7 @@ public:
                          const wxString &name = wxT("myResizableListCtrl")
                        );
 
-    // Destuctor.
+    // Destructor.
     ~MyResizableListCtrl(){};
 
 protected: