CalLite: Set version number to 0.3 (for next zipped release)

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5379 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2016-11-23 11:59:21 +00:00
parent d805353cca
commit 4b857ef28f
2 changed files with 14 additions and 14 deletions

View File

@ -13,7 +13,7 @@
</CompilerOptions> </CompilerOptions>
<Description Value="A lightweight calendar component"/> <Description Value="A lightweight calendar component"/>
<License Value="Modified LGL2 (with linking exception)"/> <License Value="Modified LGL2 (with linking exception)"/>
<Version Minor="1"/> <Version Minor="3"/>
<Files Count="1"> <Files Count="1">
<Item1> <Item1>
<Filename Value="source/calendarlite.pas"/> <Filename Value="source/calendarlite.pas"/>

View File

@ -1240,19 +1240,19 @@ constructor TCalColors.Create(AOwner: TCalendarLite);
begin begin
inherited Create; inherited Create;
FOwner := AOwner; FOwner := AOwner;
FColors[0] := clSilver; // ArrowBorderColor: clSilver; FColors[0] := clSilver; // ArrowBorderColor
FColors[1] := clSilver; // ArrowColor: clSilver; FColors[1] := clSilver; // ArrowColor
FColors[2] := clWhite; // BackgroundColor: clWhite; FColors[2] := clWhite; // BackgroundColor
FColors[3] := clSilver; // BorderColor: clSilver; FColors[3] := clSilver; // BorderColor
FColors[4] := clSilver; // DaylineColor: clSilver; FColors[4] := clSilver; // DaylineColor
FColors[5] := clRed; // HolidayColor: clRed; FColors[5] := clRed; // HolidayColor
FColors[6] := clSilver; // PastMonthColor: clSilver; FColors[6] := clSilver; // PastMonthColor
FColors[7] := clMoneyGreen; // SelectedDateColor: clMoneyGreen; FColors[7] := clMoneyGreen; // SelectedDateColor
FColors[8] := clBlack; // TextColor: clBlack; FColors[8] := clBlack; // TextColor
FColors[9] := clGray; // TodayFrameColor: clGray; FColors[9] := clGray; // TodayFrameColor
FColors[10] := clHighlight; // TopRowColor: clHighlight; FColors[10] := clHighlight; // TopRowColor
FColors[11] := clHighlightText; // TopRowTextColor: clHighlightText; FColors[11] := clHighlightText; // TopRowTextColor
FColors[12] := clRed; // WeekendColor: clRed; FColors[12] := clRed; // WeekendColor
end; end;
function TCalColors.GetColor(AIndex: Integer): TColor; function TCalColors.GetColor(AIndex: Integer): TColor;