diff options
Diffstat (limited to 'src/cheat_gui.cpp')
-rw-r--r-- | src/cheat_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cheat_gui.cpp b/src/cheat_gui.cpp index 6184aa3de..74bd21faf 100644 --- a/src/cheat_gui.cpp +++ b/src/cheat_gui.cpp @@ -273,7 +273,7 @@ struct CheatWindow : Window { virtual void OnClick(Point pt, int widget) { - const NWidgetCore *wid = this->GetWidget<NWidgetCore>(CW_PANEL); + const NWidgetBase *wid = this->GetWidget<NWidgetBase>(CW_PANEL); uint btn = (pt.y - wid->pos_y - WD_FRAMERECT_TOP - this->header_height) / (FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL); uint x = pt.x - wid->pos_x; bool rtl = _dynlang.text_dir == TD_RTL; |