diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-08-27 12:27:03 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-08-27 12:27:03 +0000 |
| commit | ae7d236fdfc039cc8e8c615fc1f92801b681969b (patch) | |
| tree | 849e487df7fc97c8d99267ea124ad571a24a8271 /Source/Core/DebuggerWX/src | |
| parent | b64722d4d5cdc4fefacf51577464692de8583068 (diff) | |
Fixed warnings about field initialisation order.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@358 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/src')
| -rw-r--r-- | Source/Core/DebuggerWX/src/CodeWindow.cpp | 4 |
1 files 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);
|
