BUG: Fix CTest submit-only operation

We need to initialize cmCTestSubmitHandler on construction to make sure
all parts get enabled by default.  The recent fix to re-enable all parts
on initialization broke submit-only operations because the handler did
not initialize on construction.  This also removes duplicate
initialization code.
This commit is contained in:
Brad King 2009-01-27 10:58:25 -05:00
parent bac4f79764
commit 6ae2f8e7ee
1 changed files with 1 additions and 8 deletions

View File

@ -62,14 +62,7 @@ cmCTestSubmitHandlerCurlDebugCallback(CURL *, curl_infotype, char *chPtr,
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
cmCTestSubmitHandler::cmCTestSubmitHandler() : HTTPProxy(), FTPProxy() cmCTestSubmitHandler::cmCTestSubmitHandler() : HTTPProxy(), FTPProxy()
{ {
this->HTTPProxy = ""; this->Initialize();
this->HTTPProxyType = 0;
this->HTTPProxyAuth = "";
this->FTPProxy = "";
this->FTPProxyType = 0;
this->CDash = false;
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------