make bisect work (initial commit)
[TortoiseGit.git] / src / TortoiseProc / Commands / RevertCommand.cpp
blobd20a1dc7005d8d94ac0c74287adbdf4c460c3079
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008 - TortoiseSVN
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "StdAfx.h"
20 #include "RevertCommand.h"
22 #include "RevertDlg.h"
23 #include "SVNProgressDlg.h"
24 #include "MessageBox.h"
26 bool RevertCommand::Execute()
28 CRevertDlg dlg;
29 dlg.m_pathList = pathList;
30 if (dlg.DoModal() == IDOK)
33 // g_Git.Revert(dlg.m_selectedPathList,true);
35 CGitProgressDlg progDlg;
36 theApp.m_pMainWnd = &progDlg;
37 progDlg.SetCommand(CGitProgressDlg::GitProgress_Revert);
38 if (parser.HasVal(_T("closeonend")))
39 progDlg.SetAutoClose(parser.GetLongVal(_T("closeonend")));
40 progDlg.SetOptions(dlg.m_bRecursive ? ProgOptRecursive : ProgOptNonRecursive);
41 progDlg.SetPathList(dlg.m_pathList);
42 progDlg.SetItemCount(dlg.m_selectedPathList.GetCount());
43 progDlg.SetSelectedList(dlg.m_selectedPathList);
44 progDlg.DoModal();
46 return true;
48 return false;