libgit2: Enable fetch function
[TortoiseGit.git] / src / TortoiseProc / Commands / SendMailCommand.cpp
blob59f0425902efad988da090488f030c10a2cb9a28
1 #include "stdafx.h"
2 #include "SendMailCommand.h"
3 #include "SendMailDlg.h"
4 #include "GITProgressDlg.h"
5 #include "AppUtils.h"
7 bool SendMailCommand::Execute()
9 bool autoclose=false;
10 if (parser.HasVal(_T("closeonend")))
11 autoclose=!!parser.GetLongVal(_T("closeonend"));
13 return CAppUtils::SendPatchMail(this->orgPathList,autoclose);