From bd588e7a55b0cad7077b45f9a7ee27036c74289f Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 17 Oct 2003 07:45:21 -0400 Subject: [PATCH] ENH: Fix problem with wx 2.4 --- Source/WXDialog/cmWXMainFrame.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WXDialog/cmWXMainFrame.cxx b/Source/WXDialog/cmWXMainFrame.cxx index bd71c171e..e93400d75 100644 --- a/Source/WXDialog/cmWXMainFrame.cxx +++ b/Source/WXDialog/cmWXMainFrame.cxx @@ -78,7 +78,7 @@ cmMainFrame::cmMainFrame(const wxString& title, const wxSize& size) tgrid->AddGrowableCol(2); this->m_GeneratorFrame = tgrid; this->m_BuildFor = new wxStaticText(this->m_MainPanel, -1, "Build For:"); - this->m_GeneratorMenu = new wxComboBox(this->m_MainPanel, -1, "Generator", + this->m_GeneratorMenu = new wxComboBox(this->m_MainPanel, -1, "", wxDefaultPosition, wxDefaultSize, 0, 0, wxCB_READONLY);