From ae7d236fdfc039cc8e8c615fc1f92801b681969b Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Wed, 27 Aug 2008 12:27:03 +0000 Subject: [PATCH] Fixed warnings about field initialisation order. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@358 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/src/CodeWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DebuggerWX/src/CodeWindow.cpp b/Source/Core/DebuggerWX/src/CodeWindow.cpp index aa3fa8c0ea..0136a118df 100644 --- a/Source/Core/DebuggerWX/src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/src/CodeWindow.cpp @@ -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);