Fixed warnings about field initialisation order.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@358 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-08-27 12:27:03 +00:00
parent b64722d4d5
commit ae7d236fdf

View File

@ -108,9 +108,9 @@ inline wxBitmap _wxGetBitmapFromMemory(const unsigned char* data, int length)
CCodeWindow::CCodeWindow(const SCoreStartupParameter& _LocalCoreStartupParameter, wxWindow* parent, wxWindowID id,
const wxString& title, const wxPoint& pos, const wxSize& size, long style)
: wxFrame(parent, id, title, pos, size, style)
, m_RegisterWindow(NULL)
, m_LogWindow(NULL)
{
, m_RegisterWindow(NULL)
{
InitBitmaps();
CreateGUIControls(_LocalCoreStartupParameter);