Explorar o código

Missing call to the parent implementation

Source commit: d1d546cbaa89e4877b4e80f2731595fc6eb0de88
Martin Prikryl %!s(int64=4) %!d(string=hai) anos
pai
achega
cee4e67202
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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));
 }
 //----------------------------------------------------------------------------------------------------------