author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | a1487b3fc0313408525cd5b2f3bc4a462df351f7 (patch) (unidiff) | |
tree | 010aec6c2abd5ada2f909ac6798c93bf22508bf5 /WarnBlocking.cpp | |
download | klog-a1487b3fc0313408525cd5b2f3bc4a462df351f7.zip klog-a1487b3fc0313408525cd5b2f3bc4a462df351f7.tar.gz klog-a1487b3fc0313408525cd5b2f3bc4a462df351f7.tar.bz2 |
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/klog/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
-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 | ||