summaryrefslogtreecommitdiff
path: root/sources/prefs/editors/VSAbstractBetterEditor.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-08-07 22:03:00 +0000
committerPaul Buetow <paul@buetow.org>2008-08-07 22:03:00 +0000
commit2a74626954f00f3403b10c2a5160c0c4d1814aad (patch)
tree043eafb9040ed5b13ab76febaeea6e00083a633c /sources/prefs/editors/VSAbstractBetterEditor.java
parenta7fdf8fb6a1f32062161b6e245c6f8bd67da3ec9 (diff)
more written
Diffstat (limited to 'sources/prefs/editors/VSAbstractBetterEditor.java')
-rw-r--r--sources/prefs/editors/VSAbstractBetterEditor.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/sources/prefs/editors/VSAbstractBetterEditor.java b/sources/prefs/editors/VSAbstractBetterEditor.java
index 8779e56..e1a605d 100644
--- a/sources/prefs/editors/VSAbstractBetterEditor.java
+++ b/sources/prefs/editors/VSAbstractBetterEditor.java
@@ -43,7 +43,7 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor {
private Container contentPane;
/** The info area. */
- private VSInfoArea infoArea;
+ //private VSInfoArea infoArea;
/** The title. */
private String title;
@@ -90,7 +90,7 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor {
JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
- infoArea = new VSInfoArea();
+ //infoArea = new VSInfoArea();
JPanel editPanel = getEditPanel();
JPanel buttonPanel = getButtonPanel();
@@ -134,7 +134,7 @@ public abstract class VSAbstractBetterEditor extends VSAbstractEditor {
*
* @return the info area
*/
- protected VSInfoArea getInfoArea() {
- return infoArea;
- }
+ //protected VSInfoArea getInfoArea() {
+ // return infoArea;
+ //}
}