Skip to content
Snippets Groups Projects
Commit 09d8e73b authored by felmer's avatar felmer
Browse files

SP-747, BIS-468: Fixing a bug in PopupDialogBasedInfoHandler. This bug shows...

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
parent ef3a5c17
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment