Change a macro from using a special wx funciton to the regular c++ one
More work on fixing Bug #5
This commit is contained in:
parent
14febfd022
commit
7666396b5f
|
@ -20,7 +20,7 @@ extern "C" {
|
|||
#include "../gba/agbprint.h"
|
||||
|
||||
#define GetXRCDialog(n) \
|
||||
wxStaticCast(FindWindow(XRCID(n)), wxDialog)
|
||||
dynamic_cast<wxDialog*>(FindWindow(XRCID(n)))
|
||||
|
||||
bool cmditem_lt(const struct cmditem &cmd1, const struct cmditem &cmd2)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue