--- jsampler/trunk/src/org/jsampler/view/classic/HelpAboutDlg.java 2011/11/23 18:58:46 2287 +++ jsampler/trunk/src/org/jsampler/view/classic/HelpAboutDlg.java 2011/11/23 21:19:44 2288 @@ -1,7 +1,7 @@ /* * JSampler - a java front-end for LinuxSampler * - * Copyright (C) 2005-2009 Grigor Iliev + * Copyright (C) 2005-2011 Grigor Iliev * * This file is part of JSampler. * @@ -39,19 +39,16 @@ import javax.swing.BorderFactory; import javax.swing.Box; import javax.swing.BoxLayout; -import javax.swing.ImageIcon; import javax.swing.JEditorPane; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JScrollPane; -import javax.swing.JSeparator; import javax.swing.JTextField; -import net.sf.juife.InformationDialog; -import net.sf.juife.JuifeUtils; -import net.sf.juife.LinkButton; +import net.sf.juife.swing.InformationDialog; +import net.sf.juife.swing.LinkButton; -import org.jsampler.HF; +import org.jsampler.view.swing.SHF; import static org.jsampler.view.classic.ClassicI18n.i18n; @@ -62,7 +59,7 @@ */ public class HelpAboutDlg extends InformationDialog { private JLabel lProductName = - new JLabel("\nJS Classic (version 0.9)"); + new JLabel("\nJS Classic (version 0.9cvs2)"); private JLabel lAuthor = new JLabel(i18n.getLabel("HelpAboutDlg.lAuthor")); private JTextField tfAuthor = new JTextField(i18n.getLabel("HelpAboutDlg.tfAuthor")); @@ -320,7 +317,7 @@ checkDesktopSupported() { if(Desktop.isDesktopSupported()) return true; - HF.showErrorMessage(i18n.getError("HelpAboutDlg.DesktopApiNotSupported"), this); + SHF.showErrorMessage(i18n.getError("HelpAboutDlg.DesktopApiNotSupported"), this); return false; }