]> icculus.org git repositories - taylor/freespace2.git/blob - src/pofview/childfrm.cpp
remove dead code left over from merge
[taylor/freespace2.git] / src / pofview / childfrm.cpp
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 // ChildFrm.cpp : implementation of the CChildFrame class
10 //
11
12 #include "stdafx.h"
13 #include "pofview.h"
14
15 #include "childfrm.h"
16
17 #ifdef _DEBUG
18 #define new DEBUG_NEW
19 #undef THIS_FILE
20 static char THIS_FILE[] = __FILE__;
21 #endif
22
23 /////////////////////////////////////////////////////////////////////////////
24 // CChildFrame
25
26 IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
27
28 BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
29         //{{AFX_MSG_MAP(CChildFrame)
30                 // NOTE - the ClassWizard will add and remove mapping macros here.
31                 //    DO NOT EDIT what you see in these blocks of generated code !
32         //}}AFX_MSG_MAP
33 END_MESSAGE_MAP()
34
35 /////////////////////////////////////////////////////////////////////////////
36 // CChildFrame construction/destruction
37
38 CChildFrame::CChildFrame()
39 {
40         // TODO: add member initialization code here
41         
42 }
43
44 CChildFrame::~CChildFrame()
45 {
46 }
47
48
49 /////////////////////////////////////////////////////////////////////////////
50 // CChildFrame diagnostics
51
52 #ifdef _DEBUG
53 void CChildFrame::AssertValid() const
54 {
55         CMDIChildWnd::AssertValid();
56 }
57
58 void CChildFrame::Dump(CDumpContext& dc) const
59 {
60         CMDIChildWnd::Dump(dc);
61 }
62
63 #endif //_DEBUG
64
65 /////////////////////////////////////////////////////////////////////////////
66 // CChildFrame message handlers
67
68 BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs) 
69 {
70         // TODO: Add your specialized code here and/or call the base class
71
72         cs.cx = 640;
73         cs.cy = 480;
74         
75         return CMDIChildWnd::PreCreateWindow(cs);
76 }
77