Fixed issue #1542: Can send pull request email
[TortoiseGit.git] / src / TortoiseProc / LogDlgHelper.cpp
blobdb07acf2ff2d5561f485fe0ce2aa7e1d5ffb6c1d
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2007 - TortoiseSVN
4 // Copyright (C) 2008-2013 - TortoiseGit
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 "LogDlgHelper.h"
22 #include "LogDlg.h"
24 CStoreSelection::CStoreSelection(CLogDlg* /* dlg */)
25 : m_logdlg(NULL)
27 #if 0
28 m_logdlg = dlg;
30 int selIndex = m_logdlg->m_LogList.GetSelectionMark();
31 if ( selIndex>=0 )
33 POSITION pos = m_logdlg->m_LogList.GetFirstSelectedItemPosition();
34 int nIndex = m_logdlg->m_LogList.GetNextSelectedItem(pos);
35 if ( nIndex!=-1 && nIndex < m_logdlg->m_arShownList.GetSize() )
37 PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_logdlg->m_arShownList.GetAt(nIndex));
38 m_SetSelectedRevisions.insert(pLogEntry->Rev);
39 while (pos)
41 nIndex = m_logdlg->m_LogList.GetNextSelectedItem(pos);
42 if ( nIndex!=-1 && nIndex < m_logdlg->m_arShownList.GetSize() )
44 pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_logdlg->m_arShownList.GetAt(nIndex));
45 m_SetSelectedRevisions.insert(pLogEntry->Rev);
50 #endif
53 CStoreSelection::~CStoreSelection()
55 #if 0
56 if ( m_SetSelectedRevisions.size()>0 )
58 for (int i=0; i<m_logdlg->m_arShownList.GetCount(); ++i)
60 LONG nRevision = reinterpret_cast<PLOGENTRYDATA>(m_logdlg->m_arShownList.GetAt(i))->Rev;
61 if ( m_SetSelectedRevisions.find(nRevision)!=m_SetSelectedRevisions.end() )
63 m_logdlg->m_LogList.SetSelectionMark(i);
64 m_logdlg->m_LogList.SetItemState(i, LVIS_SELECTED, LVIS_SELECTED);
65 m_logdlg->m_LogList.EnsureVisible(i, FALSE);
69 #endif