X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af1337b041be734b7e64bcf7a06086268ae6895e..477550dc0cd5a38bfae7c32e3fe9d8823c13a761:/samples/xrc/derivdlg.h diff --git a/samples/xrc/derivdlg.h b/samples/xrc/derivdlg.h index ca580eed79..edcf91f525 100644 --- a/samples/xrc/derivdlg.h +++ b/samples/xrc/derivdlg.h @@ -18,7 +18,7 @@ // GCC interface //----------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "derivdlg.h" #endif @@ -36,30 +36,30 @@ class PreferencesDialog : public wxDialog { -public: - +public: + // Constructor. /* \param parent The parent window. Simple constructor. - */ + */ PreferencesDialog( wxWindow* parent ); - - // Destructor. + + // 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 ); - + // 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() };