From 09d8e73b71a984514978aa9c1eaa86e65e5c5053 Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Wed, 10 Jul 2013 08:42:28 +0000 Subject: [PATCH] SP-747, BIS-468: Fixing a bug in PopupDialogBasedInfoHandler. This bug shows only up in case of an errorness attachment uploads on entity detailed views. SVN: 29528 --- .../application/ui/widget/PopupDialogBasedInfoHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 e8d04f9b8a7..33d62bce8c5 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) -- GitLab