@@ -76,7 +76,7 @@ MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, co
7676 installsList = new wxListCtrl ( installs_pane, wxID_FLOPPY, wxDefaultPosition, wxDefaultSize, wxLC_LIST|wxLC_SINGLE_SEL );
7777 iManSizer->Add ( installsList, wxGBPosition ( 1 , 0 ), wxGBSpan ( 1 , 1 ), wxALL|wxEXPAND, 5 );
7878
79- installsPathsList = new wxListCtrl ( installs_pane, wxID_HOME, wxDefaultPosition, wxDefaultSize, wxLC_LIST|wxLC_SINGLE_SEL );
79+ installsPathsList = new wxListCtrl ( installs_pane, wxID_HOME, wxDefaultPosition, wxDefaultSize, wxLC_LIST|wxLC_NO_HEADER| wxLC_SINGLE_SEL );
8080 iManSizer->Add ( installsPathsList, wxGBPosition ( 3 , 0 ), wxGBSpan ( 1 , 1 ), wxALL|wxEXPAND, 5 );
8181
8282 wxBoxSizer* bSizer4;
@@ -111,7 +111,7 @@ MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, co
111111 installs_pane->SetSizer ( iManSizer );
112112 installs_pane->Layout ();
113113 iManSizer->Fit ( installs_pane );
114- notebook->AddPage ( installs_pane, wxT (" Editor Versions" ), false );
114+ notebook->AddPage ( installs_pane, wxT (" Editor Versions" ), true );
115115
116116 main_sizer->Add ( notebook, 1 , wxEXPAND | wxALL, 5 );
117117
@@ -132,7 +132,6 @@ MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, co
132132 menuRemove = new wxMenuItem ( menuProject, wxID_DELETE, wxString ( wxT (" Remove Project From List" ) ) + wxT (' \t ' ) + wxT (" Ctrl--" ), wxEmptyString, wxITEM_NORMAL );
133133 menuProject->Append ( menuRemove );
134134
135- wxMenuItem* menuReveal;
136135 menuReveal = new wxMenuItem ( menuProject, wxID_FIND, wxString ( wxT (" Reveal" ) ) + wxT (' \t ' ) + wxT (" Ctrl-F" ), wxEmptyString, wxITEM_NORMAL );
137136 menuProject->Append ( menuReveal );
138137
@@ -254,7 +253,7 @@ OpenWithEditorDlgBase::OpenWithEditorDlgBase( wxWindow* parent, wxWindowID id, c
254253 m_staticText7->Wrap ( -1 );
255254 gbSizer4->Add ( m_staticText7, wxGBPosition ( 0 , 0 ), wxGBSpan ( 1 , 1 ), wxALL, 5 );
256255
257- editorsListCtrl = new wxListCtrl ( this , VERSIONS_LIST, wxDefaultPosition, wxDefaultSize, wxLC_ICON );
256+ editorsListCtrl = new wxListCtrl ( this , VERSIONS_LIST, wxDefaultPosition, wxDefaultSize, wxLC_NO_HEADER|wxLC_REPORT );
258257 gbSizer4->Add ( editorsListCtrl, wxGBPosition ( 1 , 0 ), wxGBSpan ( 1 , 3 ), wxALL|wxEXPAND, 5 );
259258
260259 dlgCancel = new wxButton ( this , wxID_CANCEL, wxT (" Cancel" ), wxDefaultPosition, wxDefaultSize, 0 );
0 commit comments