]> git.saurik.com Git - wxWidgets.git/commitdiff
Parameter "small" renamed. Defined in a header file
authorUnknown (JL) <nobody@localhost>
Mon, 4 Oct 1999 11:28:23 +0000 (11:28 +0000)
committerUnknown (JL) <nobody@localhost>
Mon, 4 Oct 1999 11:28:23 +0000 (11:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/toolbar/test.cpp
samples/toolbar/test.h

index bb9c4c22b009adcb69f1ad54c4898836242dfc08..cc2111486b8a695bbff8515f8fe063abc2a35d1e 100644 (file)
@@ -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];
 
index bea026b55bc0a51b029d9c4a740ec6983642e1a1..82f89500113956b960838ac6ca8c9424ee70de2e 100644 (file)
@@ -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