From ff0c70b54edbbe3436583d6491d4a56d96302de5 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 17 Jan 2009 14:29:28 +0000 Subject: added initial multiple langua support. --- sources/prefs/editors/VSAbstractBetterEditor.java | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'sources/prefs/editors/VSAbstractBetterEditor.java') diff --git a/sources/prefs/editors/VSAbstractBetterEditor.java b/sources/prefs/editors/VSAbstractBetterEditor.java index 9df7f78..556b14a 100644 --- a/sources/prefs/editors/VSAbstractBetterEditor.java +++ b/sources/prefs/editors/VSAbstractBetterEditor.java @@ -28,7 +28,6 @@ import java.awt.event.*; import javax.swing.*; import prefs.*; -//import utils.*; /** * The class VSAbstractBetterEditor, is an improved VSAbstractEditor. @@ -43,7 +42,6 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor { private Container contentPane; /** The info area. */ - //private VSInfoArea infoArea; /** The title. */ private String title; @@ -90,13 +88,10 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor { JPanel panel = new JPanel(); panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS)); - //infoArea = new VSInfoArea(); JPanel editPanel = getEditPanel(); JPanel buttonPanel = getButtonPanel(); - //JScrollPane scrollPane = new JScrollPane(editPanel); panel.add(editPanel); - //panel.add(infoArea); panel.add(buttonPanel); return panel; @@ -128,13 +123,4 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor { /* More action in the super class!!! */ super.actionPerformed(e); } - - /** - * Gets the info area. - * - * @return the info area - */ - //protected VSInfoArea getInfoArea() { - // return infoArea; - //} } -- cgit v1.2.3