Commit 6a3234a8b7591ecab75cb97feeedf463a8839d6b

Authored by Nathanael Jourdane
1 parent 49cc21ea
Exists in master

bugfix on status bar

src/main/java/eu/omp/irap/vespa/epntapclient/gui/servicespanel/ServicesPanelCtrl.java
... ... @@ -59,9 +59,9 @@ public class ServicesPanelCtrl extends VOTableController implements ServicesPane
59 59 }
60 60  
61 61 @Override
62   - public void displayInfo(String message) {
63   - super.displayInfo(message);
64   - listener.displayInfo(message);
  62 + public void displayInfo(String shortMessage, String detailledMessage) {
  63 + super.displayInfo(shortMessage, detailledMessage);
  64 + listener.displayInfo(shortMessage);
65 65 }
66 66  
67 67 /**
... ...