pulled latest translations from Transifex
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingsPropPage.cpp
blob84133e2d236d7cc7bd85e49a0ff5664b9e255570
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2007 - TortoiseSVN
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software Foundation,
16 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #include "stdafx.h"
19 #include "SettingsPropPage.h"
21 IMPLEMENT_DYNAMIC(ISettingsPropPage, CPropertyPage)
23 ISettingsPropPage::ISettingsPropPage() : CPropertyPage()
24 , m_restart(Restart_None)
28 ISettingsPropPage::ISettingsPropPage(LPCTSTR lpszTemplateName, UINT nIDCaption, UINT nIDHeaderTitle, UINT nIDHeaderSubTitle /* = 0 */, DWORD dwSize /* = sizeof */)
29 : CPropertyPage(lpszTemplateName, nIDCaption, nIDHeaderTitle, nIDHeaderSubTitle, dwSize)
30 , m_restart(Restart_None)
34 ISettingsPropPage::ISettingsPropPage(UINT nIDTemplate, UINT nIDCaption, UINT nIDHeaderTitle, UINT nIDHeaderSubTitle /* = 0 */, DWORD dwSize /* = sizeof */)
35 : CPropertyPage(nIDTemplate, nIDCaption, nIDHeaderTitle, nIDHeaderSubTitle, dwSize)
36 , m_restart(Restart_None)
40 ISettingsPropPage::ISettingsPropPage(LPCTSTR lpszTemplateName, UINT nIDCaption /* = 0 */, DWORD dwSize /* = sizeof */)
41 : CPropertyPage(lpszTemplateName, nIDCaption, dwSize)
42 , m_restart(Restart_None)
46 ISettingsPropPage::ISettingsPropPage(UINT nIDTemplate, UINT nIDCaption /* = 0 */, DWORD dwSize /* = sizeof */)
47 : CPropertyPage(nIDTemplate, nIDCaption, dwSize)
48 , m_restart(Restart_None)
52 ISettingsPropPage::~ISettingsPropPage()