Removed wxTR_HIDE_ROOT under Windows, and removed wxTR_EDIT_LABELS for now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2002-04-04 17:24:49 +00:00
parent 65e5084827
commit 0ad88447ca

View File

@ -505,7 +505,12 @@ bool wxGenericDirCtrl::Create(wxWindow *parent,
Init();
long treeStyle = wxTR_HAS_BUTTONS | wxTR_EDIT_LABELS | wxTR_HIDE_ROOT;
long treeStyle = wxTR_HAS_BUTTONS ; // | wxTR_EDIT_LABELS ;
#ifndef __WXMSW__
treeStyle |= wxTR_HIDE_ROOT;
#endif
if ((style & wxDIRCTRL_3D_INTERNAL) == 0)
treeStyle |= wxNO_BORDER;