]> git.saurik.com Git - wxWidgets.git/commitdiff
small fix to the sample
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Dec 1999 17:39:07 +0000 (17:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Dec 1999 17:39:07 +0000 (17:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/toolbar/toolbar.cpp

index e5fb89502750c54367a386ed552ac585801fa4ad..9106c8f50446b90d7399ca898ea9655e71f7f945 100644 (file)
 #include <wx/log.h>
 
 // define this to 1 to use wxToolBarSimple instead of the native one
-#define USE_GENERIC_TBAR 1
+#define USE_GENERIC_TBAR 0
 
 #if USE_GENERIC_TBAR
     #if !wxUSE_TOOLBAR_SIMPLE
-        #error "wxToolBarSimple is not compiled in, set wxUSE_TOOLBAR_SIMPLE "\
-               "to 1 in setup.h and recompile the library."
+        #error wxToolBarSimple is not compiled in, set wxUSE_TOOLBAR_SIMPLE \
+               to 1 in setup.h and recompile the library.
     #else
         #include <wx/tbarsmpl.h>
     #endif
@@ -217,6 +217,13 @@ void MyFrame::RecreateToolbar()
     wxBitmap toolBarBitmaps[8];
 
     toolBarBitmaps[0] = wxBITMAP(new);
+#if 0
+    toolBar->AddTool(wxID_NEW, toolBarBitmaps[0], wxNullBitmap, FALSE, -1, -1,
+                     (wxObject *) NULL, "New file");
+    toolBar->Realize();
+    return;
+#endif
+
     toolBarBitmaps[1] = wxBITMAP(open);
     if ( !m_smallToolbar )
     {
@@ -372,7 +379,7 @@ void MyFrame::OnToggleToolbarRows(wxCommandEvent& WXUNUSED(event))
 
     GetToolBar()->SetRows(m_horzToolbar ? m_rows : 10 / m_rows);
 
-    //RecreateToolbar();
+    //RecreateToolbar(); -- this is unneeded
 }
 
 void MyFrame::OnToggleToolbarOrient(wxCommandEvent& WXUNUSED(event))