]> git.saurik.com Git - wxWidgets.git/commitdiff
build fix (SetBitmaps is only for wxMSW)
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 13 Oct 2008 08:22:12 +0000 (08:22 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 13 Oct 2008 08:22:12 +0000 (08:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56262 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/screenshotgen/src/screenshot_main.cpp

index a2bc1e7d6dd273b1953ddb71a63fc09befa116f2..bae2ea664f1f019d3e6d399033348a78f54ede35 100644 (file)
@@ -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) );
 }