DolphinWX: Fix case where the debugger would crash on hiding a pane.
These ID values would clash with the window parent IDs of all the actual debugger panes (they are in the 350 range as well). For example, attempting to show and then close the memory window would cause an assertion, because it would attempt to destroy the text control for searching through memory, rather than destroying the actual parent window it's attached to. These IDs are only used locally, so their value doesn't matter.
This commit is contained in:
parent
124df2e134
commit
95660a5563
|
@ -44,7 +44,7 @@ class DebugInterface;
|
|||
|
||||
enum
|
||||
{
|
||||
IDM_MEM_ADDRBOX = 350,
|
||||
IDM_MEM_ADDRBOX,
|
||||
IDM_SYMBOLLIST,
|
||||
IDM_SETVALBUTTON,
|
||||
IDM_DUMP_MEMORY,
|
||||
|
|
Loading…
Reference in New Issue