FS2_Open
Open source remastering of the Freespace 2 engine
dlgbackgroundeditor.cpp
Go to the documentation of this file.
1 /*
2  * Created by Ian "Goober5000" Warfield and "z64555" for the FreeSpace2 Source
3  * Code Project.
4  *
5  * You may not sell or otherwise commercially exploit the source or things you
6  * create based on the source.
7  */
8 
10 
11 #include "frmfred2.h"
12 #include "base/wxfred_base.h"
13 
14 #include <wx/wx.h>
15 
16 // Public Members:
17 dlgBackgroundEditor::dlgBackgroundEditor( wxWindow *parent, wxWindowID id )
18  : fredBase::dlgBackgroundEditor(parent, id)
19 {
20 }
21 
22 // Protected Members:
23  // Handlers for dlgBackgroundEditor
24 void dlgBackgroundEditor::OnClose( wxCloseEvent& event )
25 {
26  ((frmFRED2*) GetParent())->OnChildClosed( this );
27  Destroy();
28 }
void OnClose(wxCloseEvent &event)
struct _cl_event * event
Definition: Glext.h:7296
dlgBackgroundEditor(wxWindow *parent, wxWindowID id)