diff options
| -rw-r--r-- | altosui/AltosConfigureUI.java | 3 | ||||
| -rw-r--r-- | altosui/AltosGraphUI.java | 8 | 
2 files changed, 8 insertions, 3 deletions
| diff --git a/altosui/AltosConfigureUI.java b/altosui/AltosConfigureUI.java index a364273a..c576b052 100644 --- a/altosui/AltosConfigureUI.java +++ b/altosui/AltosConfigureUI.java @@ -22,7 +22,6 @@ import java.awt.event.*;  import java.beans.*;  import javax.swing.*;  import javax.swing.event.*; -import javax.swing.plaf.basic.*;  class DelegatingRenderer implements ListCellRenderer { @@ -289,6 +288,7 @@ public class AltosConfigureUI  		c.anchor = GridBagConstraints.WEST;  		pane.add(new JLabel("Look & feel"), c); +		/*  		class LookAndFeelRenderer extends BasicComboBoxRenderer implements ListCellRenderer {  			public LookAndFeelRenderer() { @@ -307,6 +307,7 @@ public class AltosConfigureUI  				return this;  			}  		} +		*/  		final UIManager.LookAndFeelInfo[] look_and_feels = UIManager.getInstalledLookAndFeels(); diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java index 7715eedd..f2addfd3 100644 --- a/altosui/AltosGraphUI.java +++ b/altosui/AltosGraphUI.java @@ -143,7 +143,8 @@ public class AltosGraphUI extends AltosFrame              return graphs;          }      } -     + +    /*      static private class AscentGraphs extends OverallGraphs {          protected AltosGraphTime myAltosGraphTime(String suffix) {              return (new AltosGraphTime("Ascent " + suffix) { @@ -158,7 +159,9 @@ public class AltosGraphUI extends AltosFrame                .addElement(e_coast);          }      } -     +    */ + +    /*      static private class DescentGraphs extends OverallGraphs {          protected AltosGraphTime myAltosGraphTime(String suffix) {              return (new AltosGraphTime("Descent " + suffix) { @@ -173,6 +176,7 @@ public class AltosGraphUI extends AltosFrame              // ((XYGraph)graph[8]).ymin = new Double(-50);          }      } +    */  	public AltosGraphUI(AltosRecordIterable records, String name) throws InterruptedException, IOException {  		super(String.format("Altos Graph %s", name)); | 
