The following code is incorrect (starting at line 1548):
Code:
if AButtonKind = cxbkSpinUpBtn then
sGraphUtils.DrawArrow(TmpBmp, C, clNone, R, asTop, DefaultManager.CommonSkinData.ArrowLineWidth);
// DrawColorArrow(TmpBmp.Canvas, C, R, asTop)
else
sGraphUtils.DrawArrow(TmpBmp, C, clNone, R, asBottom, DefaultManager.CommonSkinData.ArrowLineWidth);
// DrawColorArrow(TmpBmp.Canvas, C, R, asBottom)
The ; at the end of the second line is incorrect.