]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxTB_FLAT to default style in wxFrame::CreateToolbar()
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 28 Nov 1998 22:28:25 +0000 (22:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 28 Nov 1998 22:28:25 +0000 (22:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/frame.h

index 68ca0aa7022d6774e74d7862998409542f2583d7..28f1464835c943cdf9b7e6f69ff3f56c81b6347c 100644 (file)
@@ -115,7 +115,9 @@ public:
     const wxString& name);
 
   // Create toolbar
-  virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, const wxString& name = wxToolBarNameStr);
+  virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT,
+                                   wxWindowID id = -1,
+                                   const wxString& name = wxToolBarNameStr);
   virtual wxToolBar *OnCreateToolBar(long style, wxWindowID id, const wxString& name);
   // If made known to the frame, the frame will manage it automatically.
   virtual inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; }