Skip to content
Snippets Groups Projects
Commit 93171e43 authored by Alexandre Lision's avatar Alexandre Lision Committed by Aline Bonnet
Browse files

fix crash in account settings


Constructors were missing the public access modifier

Change-Id: I2073a1e06e9f77e52d890145afb31858e8e9ee4e
Reviewed-by: default avatarAline Bonnet <aline.bonnet@savoirfairelinux.com>
parent 1906f213
Branches releases/beta1
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@ package cx.ring.fragments;
import android.content.Context;
import android.support.v7.preference.Preference;
import android.support.v7.preference.PreferenceManager;
import android.support.v7.preference.PreferenceViewHolder;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
......@@ -48,11 +47,11 @@ class CodecPreference extends Preference {
private CodecAdapter listAdapter;
CodecPreference(Context context, AttributeSet attrs) {
public CodecPreference(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
CodecPreference(Context context, AttributeSet attrs, int defStyleAttr) {
public CodecPreference(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
setWidgetLayoutResource(R.layout.frag_audio_mgmt);
listAdapter = new CodecAdapter(context);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment