diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-17 11:45:21 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-17 11:45:21 (GMT) |
commit | bd588e7a55b0cad7077b45f9a7ee27036c74289f (patch) | |
tree | aee2cd29ed96847a6b2ea46c5dbfc9cd3b54292b /Source/WXDialog/cmWXMainFrame.cxx | |
parent | 848364b8e8cc124ed6141544d11a5c3382dace4a (diff) | |
download | CMake-bd588e7a55b0cad7077b45f9a7ee27036c74289f.zip CMake-bd588e7a55b0cad7077b45f9a7ee27036c74289f.tar.gz CMake-bd588e7a55b0cad7077b45f9a7ee27036c74289f.tar.bz2 |
ENH: Fix problem with wx 2.4
Diffstat (limited to 'Source/WXDialog/cmWXMainFrame.cxx')
-rw-r--r-- | Source/WXDialog/cmWXMainFrame.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WXDialog/cmWXMainFrame.cxx b/Source/WXDialog/cmWXMainFrame.cxx index bd71c17..e93400d 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); |