Skip to content

Commit

Permalink
fix(calendardatepicker): Fixed compilation on other platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
carldebilly authored and dr1rrb committed Jun 1, 2021
1 parent eabe306 commit af2bf91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ internal override List<string> GetPossibleItemStrings()

{
int MaxNumberOfMonthsToBeChecked = 3;
DateTime longestMonth;
DateTime longestMonth = default;
int lengthOfLongestMonth = 0;
int numberOfDays = 0;
int day = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ internal override List<string> GetPossibleItemStrings()
// UmAlQuraCalendar, maxLength = 12 @ index 0
{
int MaxNumberOfYearsToBeChecked = 3;
DateTime longestYear;
DateTime longestYear = default;
int lengthOfLongestYear = 0;
int numberOfMonths = 0;
int month = 0;
Expand Down

0 comments on commit af2bf91

Please sign in to comment.