mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 14:02:49 +00:00
#1231 - Use public constructors for License/Changelog dialog fragments so that they can be recreated on configuration change
This commit is contained in:
parent
60e93559c3
commit
45220241aa
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ import android.content.Context;
|
||||||
import com.beemdevelopment.aegis.R;
|
import com.beemdevelopment.aegis.R;
|
||||||
|
|
||||||
public class ChangelogDialog extends SimpleWebViewDialog {
|
public class ChangelogDialog extends SimpleWebViewDialog {
|
||||||
private ChangelogDialog() {
|
public ChangelogDialog() {
|
||||||
super(R.string.changelog);
|
super(R.string.changelog);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import android.content.Context;
|
||||||
import com.beemdevelopment.aegis.R;
|
import com.beemdevelopment.aegis.R;
|
||||||
|
|
||||||
public class LicenseDialog extends SimpleWebViewDialog {
|
public class LicenseDialog extends SimpleWebViewDialog {
|
||||||
private LicenseDialog() {
|
public LicenseDialog() {
|
||||||
super(R.string.license);
|
super(R.string.license);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue