浏览代码

Missing call to the parent implementation

Source commit: d1d546cbaa89e4877b4e80f2731595fc6eb0de88
Martin Prikryl 4 年之前
父节点
当前提交
cee4e67202
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      source/components/ThemePageControl.cpp

+ 2 - 1
source/components/ThemePageControl.cpp

@@ -454,8 +454,9 @@ void TThemePageControl::UpdateHotButton(int & Ref, int Index)
   }
 }
 //----------------------------------------------------------------------------------------------------------
-void __fastcall TThemePageControl::MouseMove(TShiftState /*Shift*/, int X, int Y)
+void __fastcall TThemePageControl::MouseMove(TShiftState Shift, int X, int Y)
 {
+  TPageControl::MouseMove(Shift, X, Y);
   UpdateHotButton(FHotTabButton, IndexOfTabButtonAt(X, Y));
 }
 //----------------------------------------------------------------------------------------------------------