default constructor only in BolusProgressDialog
This commit is contained in:
parent
f167174151
commit
8d05845c4f
|
@ -349,7 +349,8 @@ public class ConfigBuilderPlugin implements PluginBase, PumpInterface, Constrain
|
|||
|
||||
BolusProgressDialog bolusProgressDialog = null;
|
||||
if (context != null) {
|
||||
bolusProgressDialog = new BolusProgressDialog(insulin);
|
||||
bolusProgressDialog = new BolusProgressDialog();
|
||||
bolusProgressDialog.setInsulin(insulin);
|
||||
bolusProgressDialog.show(((AppCompatActivity) context).getSupportFragmentManager(), "BolusProgress");
|
||||
}
|
||||
|
||||
|
@ -393,7 +394,8 @@ public class ConfigBuilderPlugin implements PluginBase, PumpInterface, Constrain
|
|||
|
||||
BolusProgressDialog bolusProgressDialog = null;
|
||||
if (context != null) {
|
||||
bolusProgressDialog = new BolusProgressDialog(insulin);
|
||||
bolusProgressDialog = new BolusProgressDialog();
|
||||
bolusProgressDialog.setInsulin(insulin);
|
||||
bolusProgressDialog.show(((AppCompatActivity) context).getSupportFragmentManager(), "BolusProgress");
|
||||
}
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ public class BolusProgressDialog extends DialogFragment implements View.OnClickL
|
|||
super();
|
||||
}
|
||||
|
||||
public BolusProgressDialog(double amount) {
|
||||
public void setInsulin(double amount) {
|
||||
this.amount = amount;
|
||||
bolusEnded = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue