X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3ecee463f53424f00bf462e184ebc282ee3b995e..14619f10b0bdb630206607abd0ce0319d45e095a:/samples/taskbar/tbtest.h?ds=sidebyside diff --git a/samples/taskbar/tbtest.h b/samples/taskbar/tbtest.h index a2dc242b5a..d667df9186 100644 --- a/samples/taskbar/tbtest.h +++ b/samples/taskbar/tbtest.h @@ -9,11 +9,11 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -class MyTaskBarIcon: public wxTaskBarIcon +class MyTaskBarIcon : public wxTaskBarIcon { public: -#if defined(__WXCOCOA__) - MyTaskBarIcon(wxTaskBarIconType iconType = DEFAULT_TYPE) +#if defined(__WXOSX__) && wxOSX_USE_COCOA + MyTaskBarIcon(wxTaskBarIconType iconType = wxTBI_DEFAULT_TYPE) : wxTaskBarIcon(iconType) #else MyTaskBarIcon() @@ -34,7 +34,7 @@ public: // Define a new application -class MyApp: public wxApp +class MyApp : public wxApp { public: virtual bool OnInit(); @@ -43,19 +43,17 @@ public: class MyDialog: public wxDialog { public: - MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title, - const wxPoint& pos, const wxSize& size, const long windowStyle = wxDEFAULT_DIALOG_STYLE); + MyDialog(const wxString& title); virtual ~MyDialog(); protected: - void Init(); - + void OnAbout(wxCommandEvent& event); void OnOK(wxCommandEvent& event); void OnExit(wxCommandEvent& event); void OnCloseWindow(wxCloseEvent& event); MyTaskBarIcon *m_taskBarIcon; -#if defined(__WXCOCOA__) +#if defined(__WXOSX__) && wxOSX_USE_COCOA MyTaskBarIcon *m_dockIcon; #endif