From 7f7b90397de1a34eb169e30b28b59e8cb7aad490 Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Wed, 10 May 2006 17:55:16 +0000 Subject: [PATCH] Removed trailing skinlf imports. --- .../impl/gui/main/CommunicatorMain.java | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/net/java/sip/communicator/impl/gui/main/CommunicatorMain.java b/src/net/java/sip/communicator/impl/gui/main/CommunicatorMain.java index 0522a1118..e578f6a76 100755 --- a/src/net/java/sip/communicator/impl/gui/main/CommunicatorMain.java +++ b/src/net/java/sip/communicator/impl/gui/main/CommunicatorMain.java @@ -20,15 +20,10 @@ import net.java.sip.communicator.impl.gui.main.configforms.ConfigurationFrame; import net.java.sip.communicator.impl.gui.utils.ImageLoader; -import com.l2fprod.gui.plaf.skin.Skin; -import com.l2fprod.gui.plaf.skin.SkinLookAndFeel; - -// import examples.demo; - /** - * @author Yana Stamcheva - * * Starts the GUI application using the SkinLookAndFeel of l2fprod. + * + * @author Yana Stamcheva */ public class CommunicatorMain { @@ -43,7 +38,7 @@ public CommunicatorMain() { mainFrame = new MainFrame(); mainFrame.setConfigFrame(configFrame); - + // In order to have the same icon when using option panes JOptionPane.getRootFrame().setIconImage( ImageLoader.getImage(ImageLoader.SIP_LOGO)); @@ -51,10 +46,10 @@ public CommunicatorMain() { public void setDefaultThemePack() { - try { + try { SIPCommLookAndFeel lf = new SIPCommLookAndFeel(); SIPCommLookAndFeel.setCurrentTheme(new SIPCommDefaultTheme()); - + // we need to set the UIDefaults class loader so that it may access // resources packed inside OSGI bundles UIManager.put("ClassLoader", getClass() @@ -66,7 +61,7 @@ public void setDefaultThemePack() { e.printStackTrace(); } } - + public void showCommunicator(boolean isVisible) { this.mainFrame.pack(); this.mainFrame.setVisible(isVisible);