No need to set variable to NULL
[TortoiseGit.git] / src / TortoiseShell / ShellObjects.cpp
blob8278152b3ea5e1017a26dd32f3ddaca9168a396c
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2019 - TortoiseGit
4 // Copyright (C) 2009, 2012 - 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 "ShellObjects.h"
24 ShellObjects::ShellObjects()
28 ShellObjects::~ShellObjects()
32 void ShellObjects::Insert(CShellExt * obj)
34 AutoLocker lock(m_critSec);
35 m_exts.insert(obj);
38 void ShellObjects::Erase(CShellExt * obj)
40 AutoLocker lock(m_critSec);
41 m_exts.erase(obj);
44 void ShellObjects::DeleteAll()
46 AutoLocker lock(m_critSec);
47 if (!m_exts.empty())
49 std::set<CShellExt *>::iterator it = m_exts.begin();
50 while (it != m_exts.end())
52 delete *it;
53 it = m_exts.begin();