Commit 6a3234a8b7591ecab75cb97feeedf463a8839d6b
1 parent
49cc21ea
Exists in
master
bugfix on status bar
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
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 | /** | ... | ... |