]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/myframe.h
Build the new docs as part of the automated build
[wxWidgets.git] / samples / xrc / myframe.h
index c2246335b59e7dabf59b98a2f82b9691b01edc0c..eb5b2540e0137c6c41eb59bb22811de362ac3a30 100644 (file)
@@ -18,7 +18,7 @@
 // GCC interface
 //-----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "myframe.h"
 #endif
 
@@ -41,7 +41,7 @@ public:
     // Constructor.
     MyFrame( wxWindow* parent=(wxWindow *)NULL);
 
-private:   
+private:
 
     // Event handlers (these functions should _not_ be virtual)
     void OnExitToolOrMenuCommand(wxCommandEvent& event);
@@ -49,13 +49,13 @@ private:
     void OnNonDerivedDialogToolOrMenuCommand(wxCommandEvent& event);
     void OnDerivedDialogToolOrMenuCommand(wxCommandEvent& event);
     void OnControlsToolOrMenuCommand(wxCommandEvent& event);
-    void OnUncenteredToolOrMenuCommand(wxCommandEvent& event);    
+    void OnUncenteredToolOrMenuCommand(wxCommandEvent& event);
     void OnCustomClassToolOrMenuCommand(wxCommandEvent& event);
     void OnPlatformPropertyToolOrMenuCommand(wxCommandEvent& event);
     void OnArtProviderToolOrMenuCommand(wxCommandEvent& event);
     void OnVariableExpansionToolOrMenuCommand(wxCommandEvent& event);
 
-    // Any class wishing to process wxWindows events must use this macro
+    // Any class wishing to process wxWidgets events must use this macro
     DECLARE_EVENT_TABLE()
 
 };