fixed bad pane name

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40327 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Benjamin Williams
2006-07-25 16:29:22 +00:00
parent 925f774066
commit 2c26bdee05

View File

@@ -822,13 +822,13 @@ MyFrame::MyFrame(wxWindow* parent,
LeftDockable(false).RightDockable(false)); LeftDockable(false).RightDockable(false));
m_mgr.AddPane(tb5, wxPaneInfo(). m_mgr.AddPane(tb5, wxPaneInfo().
Name(wxT("tb4")).Caption(wxT("Sample Vertical Toolbar")). Name(wxT("tb5")).Caption(wxT("Sample Vertical Toolbar")).
ToolbarPane().Left(). ToolbarPane().Left().
GripperTop(). GripperTop().
TopDockable(false).BottomDockable(false)); TopDockable(false).BottomDockable(false));
m_mgr.AddPane(new wxButton(this, wxID_ANY, _("Test Button")), m_mgr.AddPane(new wxButton(this, wxID_ANY, _("Test Button")),
wxPaneInfo().Name(wxT("tb5")). wxPaneInfo().Name(wxT("tb6")).
ToolbarPane().Top().Row(2).Position(1). ToolbarPane().Top().Row(2).Position(1).
LeftDockable(false).RightDockable(false)); LeftDockable(false).RightDockable(false));