Skip to content

Commit

Permalink
Icon update (#129)
Browse files Browse the repository at this point in the history
Beim letzten mal sind mir einige Ersetzungen von stop-circle.png durch process-stop.png entgangen. Hatte wohl suchen und ersetzten nicht ganz funktioniert.
Ein check-double.png durch document-properties.png ersetzt, passt besser zu Eigenschaften.
Ein Deprecated ersetzt
  • Loading branch information
JohannMaierhofer authored Jan 26, 2024
1 parent bc02480 commit 79e49ff
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private void init()
settings = new de.willuhn.jameica.system.Settings(this.getClass());
settings.setStoreWhenRead(true);
headerSelected = null;
imageError = SWTUtil.getImage("stop-circle.png");
imageError = SWTUtil.getImage("process-stop.png");
imageLocked = SWTUtil.getImage("locked.png");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public QIFBuchungsartZuordnenControl(AbstractView view)
private void init()
{
imageOk = SWTUtil.getImage("ok.png");
imageError = SWTUtil.getImage("stop-circle.png");
imageError = SWTUtil.getImage("process-stop.png");
imageLocked = SWTUtil.getImage("locked.png");
}

Expand Down Expand Up @@ -243,7 +243,7 @@ public Input getBuchungsartInput() throws RemoteException
list.addFilter("buchungsklasse.id = buchungsart.buchungsklasse");
list.setOrder(
"ORDER BY buchungsklasse.bezeichnung, buchungsart.art, buchungsart.bezeichnung");
buchungsartInput = new SelectInput(list, getAktuelleBuchart());
buchungsartInput = new SelectInput(PseudoIterator.asList(list), getAktuelleBuchart());
buchungsartInput.setAttribute("klasse-art-bez");
buchungsartInput.setPleaseChoose("Bitte auswählen");
buchungsartInput.setComment(" ");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public QIFMitgliedZuordnenControl(AbstractView view)
private void init()
{
imageOk = SWTUtil.getImage("ok.png");
imageError = SWTUtil.getImage("stop-circle.png");
imageError = SWTUtil.getImage("process-stop.png");
mitgliederGeladen = false;
}

Expand Down
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/gui/menu/MitgliedMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void handleAction(Object context) throws ApplicationException
addItem(new CheckedSingleContextMenuItem("vCard QR-Code",
new MitgliedVCardQRCodeAction(), "qr-code.png"));
addItem(new CheckedContextMenuItem("Eigenschaften",
new MitgliedEigenschaftZuordnungAction(), "check-double.png"));
new MitgliedEigenschaftZuordnungAction(), "document-properties.png"));
if (Einstellungen.getEinstellung().getArbeitseinsatz())
{
addItem(new CheckedContextMenuItem("Arbeitseinsätze zuweisen",
Expand Down
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/gui/view/LesefeldDetailView.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void handleAction(Object context)
false, "document-save.png");
buttonArea.addButton(button);
button = new Button("Abbrechen und zurück", new AbortEditLesefeldAction(),
null, false, "stop-circle.png");
null, false, "process-stop.png");
buttonArea.addButton(button);
buttonArea.paint(this.getParent());
}
Expand Down

0 comments on commit 79e49ff

Please sign in to comment.