--- nono/wx/wxdumpmonitor.cpp 2026/04/29 17:04:39 1.1.1.5 +++ nono/wx/wxdumpmonitor.cpp 2026/04/29 17:04:51 1.1.1.7 @@ -6,7 +6,6 @@ #include "wxdumpmonitor.h" #include "wxtextscreen.h" -#include "mystring.h" #include "bus.h" // @@ -114,8 +113,7 @@ WXMemdumpWindow::OnTextEnter(wxCommandEv { // 入力文字列(16進文字列)を数値に変換 const wxString& wstr = event.GetString(); - const char *cstr = (const char *)wstr.mb_str(); - uint32 val = strtoul(cstr, NULL, 16); + uint32 val = strtoul((const char *)wstr.mb_str(), NULL, 16); // 16 に整列 val &= ~15;