From: Francesco Montorsi Date: Mon, 13 Oct 2008 08:22:12 +0000 (+0000) Subject: build fix (SetBitmaps is only for wxMSW) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/60d7250b7468f1dd46467743f6782b08cca74e22 build fix (SetBitmaps is only for wxMSW) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56262 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/screenshotgen/src/screenshot_main.cpp b/utils/screenshotgen/src/screenshot_main.cpp index a2bc1e7d6d..bae2ea664f 100644 --- a/utils/screenshotgen/src/screenshot_main.cpp +++ b/utils/screenshotgen/src/screenshot_main.cpp @@ -139,9 +139,9 @@ void ScreenshotFrame::InitFBControls() // set minimum size hints GetSizer()->SetSizeHints(this); - // add bitmaps to the menus - m_menuCapRect->SetBitmaps( wxIcon(play_xpm) ); - m_menuEndCapRect->SetBitmaps( wxIcon(stop_xpm) ); + // add bitmaps to the menus + m_menuCapRect->SetBitmap( wxIcon(play_xpm) ); + m_menuEndCapRect->SetBitmap( wxIcon(stop_xpm) ); }