X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab7ce33c563651f790f99d64ee56727706047ae3..b76069e27f07c9c2fe0557cc9ae9ebbb24370023:/contrib/samples/xrc/derivdlg.h diff --git a/contrib/samples/xrc/derivdlg.h b/contrib/samples/xrc/derivdlg.h index 2bea8e39ea..edcf91f525 100644 --- a/contrib/samples/xrc/derivdlg.h +++ b/contrib/samples/xrc/derivdlg.h @@ -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() };