Add LPCTSTR casts where needed
[TortoiseGit.git] / src / TortoiseProc / Commands / IgnoreCommand.cpp
blob5c6fc99d109e2c780a3fc107c8da9bf156cb752e
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2013, 2015 - TortoiseGit
4 // Copyright (C) 2007-2008 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "IgnoreCommand.h"
23 #include "MessageBox.h"
24 #include "AppUtils.h"
25 #include "ShellUpdater.h"
27 bool IgnoreCommand::Execute()
29 bool bmask=false;
31 if(parser.HasKey(_T("onlymask")))
33 bmask=true;
36 bool ret = CAppUtils::IgnoreFile(pathList,bmask);
37 if (!ret)
38 return false;
40 if (parser.HasKey(_T("delete")))
42 int key;
44 CString format;
46 if(CMessageBox::Show(hwndExplorer, IDS_PROC_KEEPFILELOCAL, IDS_APPNAME, MB_ICONERROR|MB_YESNO) == IDYES)
48 format = _T("git.exe rm --cache -r -f -- \"%s\"");
50 else
52 format=_T("git.exe rm -r -f -- \"%s\"");
55 CString output;
56 CString cmd;
57 int nPath;
58 for (nPath = 0; nPath < pathList.GetCount(); ++nPath)
61 cmd.Format(format, (LPCTSTR)pathList[nPath].GetGitPathString());
62 if (g_Git.Run(cmd, &output, CP_UTF8))
64 key = MessageBox(hwndExplorer, output, _T("TortoiseGit"), MB_ICONERROR | MB_OKCANCEL);
65 if(key == IDCANCEL)
66 return FALSE;
71 output.Format(IDS_PROC_FILESREMOVED, nPath);
73 CShellUpdater::Instance().AddPathsForUpdate(pathList);
75 MessageBox(hwndExplorer, output, _T("TortoiseGit"), MB_ICONINFORMATION | MB_OK);
78 CShellUpdater::Instance().AddPathsForUpdate(orgPathList);
79 CShellUpdater::Instance().Flush();
81 return ret;