Browse Source

Missing call to the parent implementation

Source commit: d1d546cbaa89e4877b4e80f2731595fc6eb0de88
Martin Prikryl 4 years ago
parent
commit
cee4e67202
1 changed files with 2 additions and 1 deletions
  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));
 }
 //----------------------------------------------------------------------------------------------------------