Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ public MonthView(Context context) {
this(context, null);
}

public MonthView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
public MonthView(Context context, AttributeSet attributes) {
this(context, attributes, 0);
}

public MonthView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
public MonthView(Context context, AttributeSet attributes, int defaultStyleAttribute) {
super(context, attributes, defaultStyleAttribute));
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG);

mTextPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG | Paint.DEV_KERN_TEXT_FLAG);
Expand Down