X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/65045edde4a36217aebb214d841b658f28eb6ac7..74b31181b345aaaef0c967cc5707bef72ce0a405:/samples/controls/controls.cpp?ds=sidebyside diff --git a/samples/controls/controls.cpp b/samples/controls/controls.cpp index e0531d76f8..55d24885bb 100644 --- a/samples/controls/controls.cpp +++ b/samples/controls/controls.cpp @@ -23,7 +23,9 @@ #include "wx/wx.h" #endif +#if !defined( __WXMSW__ ) || defined( __WIN95__ ) #include "wx/spinbutt.h" +#endif #include "wx/notebook.h" #include "wx/imaglist.h" @@ -475,12 +477,15 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h ) m_notebook->AddPage(panel, "wxGauge", FALSE, Image_Gauge); panel = new wxPanel(m_notebook); + +#ifndef __WXMOTIF__ // wxStaticBitmap not working under Motif yet. MB wxIcon icon = wxTheApp->GetStdIcon(wxICON_INFORMATION); wxStaticBitmap *bmpStatic = new wxStaticBitmap(panel, -1, icon, wxPoint(10, 10)); bmpStatic = new wxStaticBitmap(panel, -1, wxNullIcon, wxPoint(50, 10)); bmpStatic->SetIcon(wxTheApp->GetStdIcon(wxICON_QUESTION)); - +#endif + wxBitmap bitmap( 100, 100 ); wxMemoryDC dc; dc.SelectObject( bitmap );