--- nono/wx/wxdumpmonitor.cpp 2026/04/29 17:05:48 1.1.1.17 +++ nono/wx/wxdumpmonitor.cpp 2026/04/29 17:05:58 1.1.1.18 @@ -148,10 +148,8 @@ WXMemdumpWindow::WXMemdumpWindow(wxWindo FontChanged(); // パネルに来るマウスイベントをこっちに回す - screen->Connect(wxEVT_MOUSEWHEEL, - wxMouseEventHandler(WXMemdumpWindow::OnMouseWheel), NULL, this); - screen->Connect(wxEVT_LEFT_DCLICK, - wxMouseEventHandler(WXMemdumpWindow::OnDClick), NULL, this); + screen->Bind(wxEVT_MOUSEWHEEL, &WXMemdumpWindow::OnMouseWheel, this); + screen->Bind(wxEVT_LEFT_DCLICK, &WXMemdumpWindow::OnDClick, this); // メモリダンプオブジェクトを取得 auto mon = screen->GetMonitor();