diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-14 23:18:49 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-14 23:18:49 (GMT) |
commit | c91ca248f6b0cb9a1eebf47dce9a56e51e40b1db (patch) | |
tree | 20962dedb748112e81a87b80fd97967b07b0ad7a /Source/WXDialog/wxCMakeSetup.cxx | |
parent | 9f6e61361c2672d98c80014da693fb2beebfe9a9 (diff) | |
download | CMake-c91ca248f6b0cb9a1eebf47dce9a56e51e40b1db.zip CMake-c91ca248f6b0cb9a1eebf47dce9a56e51e40b1db.tar.gz CMake-c91ca248f6b0cb9a1eebf47dce9a56e51e40b1db.tar.bz2 |
Add progress reporting
Diffstat (limited to 'Source/WXDialog/wxCMakeSetup.cxx')
-rw-r--r-- | Source/WXDialog/wxCMakeSetup.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WXDialog/wxCMakeSetup.cxx b/Source/WXDialog/wxCMakeSetup.cxx index 6a11ccd..2db6f9e 100644 --- a/Source/WXDialog/wxCMakeSetup.cxx +++ b/Source/WXDialog/wxCMakeSetup.cxx @@ -146,10 +146,11 @@ bool wxCMakeSetup::OnInit() cm.SetValidArguments("ABGHQ"); cm.ParseCommandLine(wxApp::argc, wxApp::argv); - this->SetVendorName("Andy"); + this->SetVendorName("Kitware"); this->SetAppName("CMakeSetup"); cmMainFrame *frame = new cmMainFrame("CMake", wxSize(200, 100)); + frame->SetApplication(this); frame->Initialize(&cm); //wxFrame *frame = new testFrame("CMake", wxSize(200, 100)); //wxFrame *frame = new testFrame1("Frame", wxSize(200, 100)); |