From: Unknown (JL) Date: Mon, 4 Oct 1999 11:28:23 +0000 (+0000) Subject: Parameter "small" renamed. Defined in a header file X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d676ebcf258a700da74513b5db0bc9dda1df7bfa?ds=inline Parameter "small" renamed. Defined in a header file git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/toolbar/test.cpp b/samples/toolbar/test.cpp index bb9c4c22b0..cc2111486b 100644 --- a/samples/toolbar/test.cpp +++ b/samples/toolbar/test.cpp @@ -95,7 +95,7 @@ bool MyApp::OnInit() return TRUE; } -bool MyApp::InitToolbar(wxToolBar* toolBar, bool small) +bool MyApp::InitToolbar(wxToolBar* toolBar, bool smallicons) { // Set up toolbar wxBitmap* toolBarBitmaps[8]; @@ -103,7 +103,7 @@ bool MyApp::InitToolbar(wxToolBar* toolBar, bool small) #ifdef __WXMSW__ toolBarBitmaps[0] = new wxBitmap("icon1"); toolBarBitmaps[1] = new wxBitmap("icon2"); - if ( !small ) + if ( !smallicons ) { toolBarBitmaps[2] = new wxBitmap("icon3"); toolBarBitmaps[3] = new wxBitmap("icon4"); @@ -115,7 +115,7 @@ bool MyApp::InitToolbar(wxToolBar* toolBar, bool small) #else toolBarBitmaps[0] = new wxBitmap( new_xpm ); toolBarBitmaps[1] = new wxBitmap( open_xpm ); - if ( !small ) + if ( !smallicons ) { toolBarBitmaps[2] = new wxBitmap( save_xpm ); toolBarBitmaps[3] = new wxBitmap( copy_xpm ); @@ -137,7 +137,7 @@ bool MyApp::InitToolbar(wxToolBar* toolBar, bool small) currentX += width + 5; toolBar->AddTool(wxID_OPEN, *(toolBarBitmaps[1]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Open file"); - if ( !small ) + if ( !smallicons ) { currentX += width + 5; toolBar->AddTool(wxID_SAVE, *(toolBarBitmaps[2]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Save file"); @@ -161,7 +161,7 @@ bool MyApp::InitToolbar(wxToolBar* toolBar, bool small) toolBar->Realize(); // Can delete the bitmaps since they're reference counted - int i, max = small ? 2 : WXSIZEOF(toolBarBitmaps); + int i, max = smallicons ? 2 : WXSIZEOF(toolBarBitmaps); for (i = 0; i < max; i++) delete toolBarBitmaps[i]; diff --git a/samples/toolbar/test.h b/samples/toolbar/test.h index bea026b55b..82f8950011 100644 --- a/samples/toolbar/test.h +++ b/samples/toolbar/test.h @@ -14,7 +14,7 @@ class MyApp: public wxApp { public: bool OnInit(); - bool InitToolbar(wxToolBar* toolBar, bool small = FALSE); + bool InitToolbar(wxToolBar* toolBar, bool smallicons = FALSE); }; // Define a new frame