| |
1 |
1 |
|
| |
2 |
2 |
|
| |
3 |
3 |
|
| |
4 |
4 |
#include "stdafx.h" |
| |
5 |
5 |
#include "ch.h" |
| |
6 |
6 |
#include "FeedbackFileErrorDlg.h" |
| |
7 |
7 |
#include "FeedbackHandler.h" |
| |
8 |
8 |
|
| |
9 |
9 |
|
| |
10 |
10 |
|
| |
11 |
11 |
IMPLEMENT_DYNAMIC(CFeedbackFileErrorDlg, ictranslate::CLanguageDialog) |
| |
12 |
12 |
|
| |
13 |
13 |
CFeedbackFileErrorDlg::CFeedbackFileErrorDlg(const tchar_t* pszPath, ulong_t ulSysError, CWnd* pParent ) |
| |
14 |
|
: ictranslate::CLanguageDialog(CFeedbackFileErrorDlg::IDD, pParent), |
| |
|
14 |
: ictranslate::CLanguageDialog(IDD_FEEDBACK_FILE_ERROR_DIALOG, pParent), |
| |
15 |
15 |
m_bAllItems(FALSE), |
| |
16 |
16 |
m_strPath(pszPath), |
| |
17 |
17 |
m_ulSysError(ulSysError) |
| |
18 |
18 |
{ |
| |
19 |
19 |
|
| |
20 |
20 |
} |
| |
21 |
21 |
|
| |
22 |
22 |
CFeedbackFileErrorDlg::~CFeedbackFileErrorDlg() |
| |
23 |
23 |
{ |
| |
24 |
24 |
} |
| |
25 |
25 |
|
| |
26 |
26 |
void CFeedbackFileErrorDlg::DoDataExchange(CDataExchange* pDX) |
| |
27 |
27 |
{ |
| |
28 |
28 |
ictranslate::CLanguageDialog::DoDataExchange(pDX); |
| |
29 |
29 |
DDX_Check(pDX, IDC_ALL_ITEMS_CHECK, m_bAllItems); |
| |
30 |
30 |
DDX_Control(pDX, IDC_INFO_STATIC, m_ctlErrorInfo); |
| |
31 |
31 |
} |
| |
32 |
32 |
|
| |
33 |
33 |
|
| |
34 |
34 |
BEGIN_MESSAGE_MAP(CFeedbackFileErrorDlg, ictranslate::CLanguageDialog) |