Hi,
Using AlphaControls 2013 v8.49 b167 with Delphi 2010 and the latest DevExpress components for VCL, with $DEFINE DEVEX2011 I am getting this compiler warning:
[DCC Warning] acLFPainter.pas(165): W1010 Method 'CheckButtonColor' hides virtual method of base type 'TcxCustomLookAndFeelPainter
From this bit of code:
{$IFDEF VER12_2_3}
function CheckButtonColor(AState: TcxButtonState; ACheckState: TcxCheckBoxState): TColor; virtual;
{$ELSE}
function CheckButtonColor(AState: TcxButtonState): TColor; override;
{$ENDIF}