]> icculus.org git repositories - taylor/freespace2.git/blob - src/fred2/dialog1.cpp
The Great Newline Fix
[taylor/freespace2.git] / src / fred2 / dialog1.cpp
1 /*
2  * $Logfile: /Freespace2/code/FRED2/dialog1.cpp $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * key usage summary screen (actually a dialog box, but it's not very interactive)
8  *
9  * $Log$
10  * Revision 1.2  2002/05/07 03:16:44  theoddone33
11  * The Great Newline Fix
12  *
13  * Revision 1.1.1.1  2002/05/03 03:28:08  root
14  * Initial import.
15  *
16  * 
17  * 2     10/07/98 6:28p Dave
18  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
19  * Fred. Globalized mission and campaign file extensions. Removed Silent
20  * Threat specific code.
21  * 
22  * 1     10/07/98 3:01p Dave
23  * 
24  * 1     10/07/98 3:00p Dave
25  * 
26  * 2     2/17/97 5:28p Hoffoss
27  * Checked RCS headers, added them were missing, changing description to
28  * something better, etc where needed.
29  *
30  * $NoKeywords: $
31  */
32
33 #include "stdafx.h"
34 #include "fred.h"
35 #include "dialog1.h"
36
37 #ifdef _DEBUG
38 #define new DEBUG_NEW
39 #undef THIS_FILE
40 static char THIS_FILE[] = __FILE__;
41 #endif
42
43 /////////////////////////////////////////////////////////////////////////////
44 // dialog1 dialog
45
46 dialog1::dialog1(CWnd* pParent /*=NULL*/)
47         : CDialog(dialog1::IDD, pParent)
48 {
49         //{{AFX_DATA_INIT(dialog1)
50                 // NOTE: the ClassWizard will add member initialization here
51         //}}AFX_DATA_INIT
52 }
53
54 void dialog1::DoDataExchange(CDataExchange* pDX)
55 {
56         CDialog::DoDataExchange(pDX);
57         //{{AFX_DATA_MAP(dialog1)
58                 // NOTE: the ClassWizard will add DDX and DDV calls here
59         //}}AFX_DATA_MAP
60 }
61
62 BEGIN_MESSAGE_MAP(dialog1, CDialog)
63         //{{AFX_MSG_MAP(dialog1)
64                 // NOTE: the ClassWizard will add message map macros here
65         //}}AFX_MSG_MAP
66 END_MESSAGE_MAP()
67
68 /////////////////////////////////////////////////////////////////////////////
69 // dialog1 message handlers
70