rename SwapConnecting to ConnectingView to match standard
This commit is contained in:
parent
40c52821fa
commit
9aa73b95e4
@ -21,26 +21,26 @@ import org.fdroid.fdroid.UpdateService;
|
|||||||
import org.fdroid.fdroid.localrepo.SwapService;
|
import org.fdroid.fdroid.localrepo.SwapService;
|
||||||
|
|
||||||
// TODO: Use this for the "Preparing local repo" dialog also.
|
// TODO: Use this for the "Preparing local repo" dialog also.
|
||||||
public class SwapConnecting extends LinearLayout implements SwapWorkflowActivity.InnerView {
|
public class ConnectingView extends LinearLayout implements SwapWorkflowActivity.InnerView {
|
||||||
|
|
||||||
@SuppressWarnings("unused")
|
@SuppressWarnings("unused")
|
||||||
private static final String TAG = "SwapConnecting";
|
private static final String TAG = "ConnectingView";
|
||||||
|
|
||||||
public SwapConnecting(Context context) {
|
public ConnectingView(Context context) {
|
||||||
super(context);
|
super(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
public SwapConnecting(Context context, AttributeSet attrs) {
|
public ConnectingView(Context context, AttributeSet attrs) {
|
||||||
super(context, attrs);
|
super(context, attrs);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TargetApi(11)
|
@TargetApi(11)
|
||||||
public SwapConnecting(Context context, AttributeSet attrs, int defStyleAttr) {
|
public ConnectingView(Context context, AttributeSet attrs, int defStyleAttr) {
|
||||||
super(context, attrs, defStyleAttr);
|
super(context, attrs, defStyleAttr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TargetApi(21)
|
@TargetApi(21)
|
||||||
public SwapConnecting(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
public ConnectingView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
||||||
super(context, attrs, defStyleAttr, defStyleRes);
|
super(context, attrs, defStyleAttr, defStyleRes);
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<org.fdroid.fdroid.views.swap.SwapConnecting
|
<org.fdroid.fdroid.views.swap.ConnectingView
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
@ -47,4 +47,4 @@
|
|||||||
android:text="@string/back"
|
android:text="@string/back"
|
||||||
tools:ignore="UnusedAttribute"/>
|
tools:ignore="UnusedAttribute"/>
|
||||||
|
|
||||||
</org.fdroid.fdroid.views.swap.SwapConnecting>
|
</org.fdroid.fdroid.views.swap.ConnectingView>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user