Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter Update und Kontoauszug per Mail verschicken #236

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public void handleAction(Object context) throws ApplicationException
if (context instanceof MitgliedskontoControl)
{
MitgliedskontoControl kto = (MitgliedskontoControl) context;
kto.getBetreff(null).setValue(mv.getBetreff());
kto.getTxt(null).setValue(mv.getTxt());
kto.getBetreff().setValue(mv.getBetreff());
kto.getTxt().setValue(mv.getTxt());
}
else if (context instanceof SpendenbescheinigungMailControl)
{
Expand Down
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/gui/control/FilterControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ public CheckboxInput getOhneAbbucher()
return ohneabbucher;
}

public boolean isOhneAbbucher()
public boolean isOhneAbbucherAktiv()
{
return ohneabbucher != null;
}
Expand Down
Loading