]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/derivdlg.h
don't give errors if SetLayeredWindowAttributes() is not available (as is the case...
[wxWidgets.git] / samples / xrc / derivdlg.h
index ca580eed79278b7fd45dd2c105aec59201aa1064..e198fb1d9c481f26c35ca5d31c81ff1693140b9e 100644 (file)
 #ifndef _DERIVDLG_H_
 #define _DERIVDLG_H_
 
-//-----------------------------------------------------------------------------
-// GCC interface
-//-----------------------------------------------------------------------------
-
-#ifdef __GNUG__
-    #pragma interface "derivdlg.h"
-#endif
-
 //-----------------------------------------------------------------------------
 // Headers
 //-----------------------------------------------------------------------------
 class PreferencesDialog : public wxDialog
 {
 
-public: 
-    
+public:
+
     // Constructor.
     /*
        \param parent The parent window. Simple constructor.
-     */    
+     */
     PreferencesDialog( wxWindow* parent );
-    
-    // Destructor.                  
-    ~PreferencesDialog();
+
+    // Destructor.
+    ~PreferencesDialog(){};
 
 private:
-    
+
     // Stuff to do when "My Button" gets clicked
     void OnMyButtonClicked( wxCommandEvent &event );
 
-    // Stuff to do when a "My Checkbox" gets updated 
+    // Stuff to do when a "My Checkbox" gets updated
     // (drawn, or it changes its value)
-    void OuUpdateUIMyCheckbox( wxUpdateUIEvent &event );
-   
+    void OnUpdateUIMyCheckbox( wxUpdateUIEvent &event );
+
     // Override base class functions of a wxDialog.
     void OnOK( 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()
 
 };