diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/widget/PopupDialogBasedInfoHandler.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/widget/PopupDialogBasedInfoHandler.java index e8d04f9b8a791ad8a95efbf3858ee5301495882c..33d62bce8c57739c5f3e566e9a52860413d0ee10 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/widget/PopupDialogBasedInfoHandler.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/widget/PopupDialogBasedInfoHandler.java @@ -73,19 +73,19 @@ public class PopupDialogBasedInfoHandler extends Dialog implements IInfoHandler @Override public void displayInfo(String aText) { - display(InfoType.INFO, text); + display(InfoType.INFO, aText); } @Override public void displayError(String aText) { - display(InfoType.ERROR, text); + display(InfoType.ERROR, aText); } @Override public void displayProgress(String aText) { - display(InfoType.PROGRESS, text); + display(InfoType.PROGRESS, aText); } public void display(InfoType aType, String aText)