-rw-r--r-- | WarnBlocking.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/WarnBlocking.cpp b/WarnBlocking.cpp new file mode 100644 index 0000000..63d647d --- a/dev/null +++ b/WarnBlocking.cpp | |||
@@ -0,0 +1,42 @@ | |||
1 | // WarnBlocking.cpp : implementation file | ||
2 | // | ||
3 | |||
4 | #include "stdafx.h" | ||
5 | #include "KLog.h" | ||
6 | #include "WarnBlocking.h" | ||
7 | |||
8 | #ifdef _DEBUG | ||
9 | #define new DEBUG_NEW | ||
10 | #undef THIS_FILE | ||
11 | static char THIS_FILE[] = __FILE__; | ||
12 | #endif | ||
13 | |||
14 | ///////////////////////////////////////////////////////////////////////////// | ||
15 | // CWarnBlocking dialog | ||
16 | |||
17 | |||
18 | CWarnBlocking::CWarnBlocking(CWnd* pParent /*=NULL*/) | ||
19 | : CDialog(CWarnBlocking::IDD, pParent) | ||
20 | { | ||
21 | //{{AFX_DATA_INIT(CWarnBlocking) | ||
22 | m_bDontWarn = FALSE; | ||
23 | //}}AFX_DATA_INIT | ||
24 | } | ||
25 | |||
26 | |||
27 | void CWarnBlocking::DoDataExchange(CDataExchange* pDX) | ||
28 | { | ||
29 | CDialog::DoDataExchange(pDX); | ||
30 | //{{AFX_DATA_MAP(CWarnBlocking) | ||
31 | DDX_Check(pDX, IDC_WARNBLOCKING, m_bDontWarn); | ||
32 | //}}AFX_DATA_MAP | ||
33 | } | ||
34 | |||
35 | |||
36 | BEGIN_MESSAGE_MAP(CWarnBlocking, CDialog) | ||
37 | //{{AFX_MSG_MAP(CWarnBlocking) | ||
38 | //}}AFX_MSG_MAP | ||
39 | END_MESSAGE_MAP() | ||
40 | |||
41 | ///////////////////////////////////////////////////////////////////////////// | ||
42 | // CWarnBlocking message handlers | ||