Fixed warnings about field initialisation order.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@357 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-08-27 12:23:52 +00:00
parent 57c5cb12e9
commit b64722d4d5
1 changed files with 2 additions and 2 deletions

View File

@ -109,10 +109,10 @@ CFrame::CFrame(wxFrame* parent,
const wxSize& size, const wxSize& size,
long style) long style)
: wxFrame(parent, id, title, pos, size, style) : wxFrame(parent, id, title, pos, size, style)
, m_pMenuBar(NULL)
, m_Panel(NULL) , m_Panel(NULL)
, m_pBootProcessDialog(NULL)
, m_pStatusBar(NULL) , m_pStatusBar(NULL)
, m_pMenuBar(NULL)
, m_pBootProcessDialog(NULL)
{ {
InitBitmaps(); InitBitmaps();