OSDN Git Service

Fix Issue 85: Installer: warns of downgrade when running 0.6.2.0 on top of 0.6.1.0
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / LogDlgHelper.cpp
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2007 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #include "stdafx.h"\r
20 #include "LogDlgHelper.h"\r
21 #include "LogDlg.h"\r
22 \r
23 CStoreSelection::CStoreSelection(CLogDlg* dlg)\r
24 {\r
25 #if 0\r
26         m_logdlg = dlg;\r
27 \r
28         int selIndex = m_logdlg->m_LogList.GetSelectionMark();\r
29         if ( selIndex>=0 )\r
30         {\r
31                 POSITION pos = m_logdlg->m_LogList.GetFirstSelectedItemPosition();\r
32                 int nIndex = m_logdlg->m_LogList.GetNextSelectedItem(pos);\r
33                 if ( nIndex!=-1 && nIndex < m_logdlg->m_arShownList.GetSize() )\r
34                 {\r
35                         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_logdlg->m_arShownList.GetAt(nIndex));\r
36                         m_SetSelectedRevisions.insert(pLogEntry->Rev);\r
37                         while (pos)\r
38                         {\r
39                                 nIndex = m_logdlg->m_LogList.GetNextSelectedItem(pos);\r
40                                 if ( nIndex!=-1 && nIndex < m_logdlg->m_arShownList.GetSize() )\r
41                                 {\r
42                                         pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_logdlg->m_arShownList.GetAt(nIndex));\r
43                                         m_SetSelectedRevisions.insert(pLogEntry->Rev);\r
44                                 }\r
45                         }\r
46                 }\r
47         }\r
48 #endif\r
49 }\r
50 \r
51 CStoreSelection::~CStoreSelection()\r
52 {\r
53 #if 0\r
54         if ( m_SetSelectedRevisions.size()>0 )\r
55         {\r
56                 for (int i=0; i<m_logdlg->m_arShownList.GetCount(); ++i)\r
57                 {\r
58                         LONG nRevision = reinterpret_cast<PLOGENTRYDATA>(m_logdlg->m_arShownList.GetAt(i))->Rev;\r
59                         if ( m_SetSelectedRevisions.find(nRevision)!=m_SetSelectedRevisions.end() )\r
60                         {\r
61                                 m_logdlg->m_LogList.SetSelectionMark(i);\r
62                                 m_logdlg->m_LogList.SetItemState(i, LVIS_SELECTED, LVIS_SELECTED);\r
63                                 m_logdlg->m_LogList.EnsureVisible(i, FALSE);\r
64                         }\r
65                 }\r
66         }\r
67 #endif\r
68 }\r
69 \r