summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/gui/LoginBox.java
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2014-02-26 10:30:04 +0100
committerAndrew Branson <andrew.branson@cern.ch>2014-02-26 10:30:04 +0100
commit7381a549557ff474469b7b805f2506eba8220420 (patch)
tree3de2e4e44b2d2f0f9db420220011cd35c984fea1 /src/main/java/com/c2kernel/gui/LoginBox.java
parentcaabd3cba2ad9d454e119c4b241de9632b61cd43 (diff)
New Gateway property API
Diffstat (limited to 'src/main/java/com/c2kernel/gui/LoginBox.java')
-rw-r--r--src/main/java/com/c2kernel/gui/LoginBox.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/c2kernel/gui/LoginBox.java b/src/main/java/com/c2kernel/gui/LoginBox.java
index fb52a7b..ce7a48d 100644
--- a/src/main/java/com/c2kernel/gui/LoginBox.java
+++ b/src/main/java/com/c2kernel/gui/LoginBox.java
@@ -67,7 +67,7 @@ public class LoginBox extends JFrame {
public LoginBox(int attempt,String title,String lastUser,String bottomMessage,
javax.swing.ImageIcon imageHolder,MainFrame mainFrame) {
- String iconFile = Gateway.getProperty("AppIcon");
+ String iconFile = Gateway.getProperties().getProperty("AppIcon");
if (iconFile != null)
this.setIconImage(ImageLoader.findImage(iconFile).getImage());
this.errorLabel.setText(bottomMessage);