summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/MemoryWindow.h
diff options
context:
space:
mode:
authorJohn Peterson <jpeterson57@gmail.com>2009-09-01 02:41:48 +0000
committerJohn Peterson <jpeterson57@gmail.com>2009-09-01 02:41:48 +0000
commitd50b4c2ffc7e8bee6f480e8f85536363fb8bfe9b (patch)
tree0247a16f905168fef3fa149a3f781122823f3eef /Source/Core/DebuggerWX/Src/MemoryWindow.h
parenta1dc78d5a81fc97acfadb3a5f38c1580aa7e2a7f (diff)
GUI: Linux problem, wxAuiNotebook can't have wxFrame pages
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4133 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/MemoryWindow.h')
-rw-r--r--Source/Core/DebuggerWX/Src/MemoryWindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/Src/MemoryWindow.h b/Source/Core/DebuggerWX/Src/MemoryWindow.h
index 29e241b5ee..b12d59937b 100644
--- a/Source/Core/DebuggerWX/Src/MemoryWindow.h
+++ b/Source/Core/DebuggerWX/Src/MemoryWindow.h
@@ -41,7 +41,11 @@ class CMemoryWindow
const wxString& title = _T("Dolphin-Memory"),
const wxPoint& pos = wxPoint(950, 100),
const wxSize& size = wxSize(400, 500),
+ #ifdef _WIN32
long style = wxNO_BORDER);
+ #else
+ long style = wxDEFAULT_FRAME_STYLE | wxCLIP_CHILDREN | wxNO_FULL_REPAINT_ON_RESIZE);
+ #endif
~CMemoryWindow();