]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/ttoolbar.tex
Various bug fixes, cosmetic changes
[wxWidgets.git] / docs / latex / wx / ttoolbar.tex
index d4178dd51c2743e4c1d0d1d39b3432247ed9c883..10d3a6057d8b23baca3d27ec0f65013506899009 100644 (file)
@@ -87,7 +87,7 @@ Example of toolbar use are given in the sample programs tbarsmpl,
 tbarmsw and tbar95.
 
 Each sample creates a main window, and two toolbars: a floating toolbar
-with 24 tools, and a toolbar along the top of the main drawing canvas, divided into groups.
+with 24 tools, and a toolbar along the top of the main drawing window, divided into groups.
 
 The test program defines a general-purpose derived frame called
 \rtfsp{\bf wxFrameWithToolBar} which can manage a frame with one main subwindow
@@ -113,7 +113,7 @@ The following fragment illustrates the essence of creating a toolbar.
     wxDEFAULT_FRAME_STYLE | wxSTAY_ON_TOP);
 
   // 5 rows
-  toolBar = new TestToolBar(toolBarFrame, 10, 10, -1, -1, 0, wxVERTICAL, 5);
+  toolBar = new TestToolBar(toolBarFrame, -1, wxPoint(10, 10), wxSize(-1, -1), 0, wxVERTICAL, 5);
   toolBar->SetMargins(2, 2);
 
   for (int i = 10; i < 25; i++)