From 60d7250b7468f1dd46467743f6782b08cca74e22 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Mon, 13 Oct 2008 08:22:12 +0000 Subject: [PATCH] build fix (SetBitmaps is only for wxMSW) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56262 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/screenshotgen/src/screenshot_main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) ); } -- 2.45.2