mirror of https://github.com/rusefi/RomRaider.git
Fixed bad graph3d reference.
git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@271 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
parent
b970916e99
commit
e42e11d082
32
.classpath
32
.classpath
|
@ -1,16 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/linux/lib/j3dcore.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/linux/lib/j3dutils.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/linux/lib/vecmath.jar"/>
|
||||
<classpathentry kind="lib" path="lib/logger/rxtx/RXTXcomm.jar"/>
|
||||
<classpathentry kind="lib" path="lib/logger/jcommon-1.0.0.jar"/>
|
||||
<classpathentry kind="lib" path="lib/logger/jfreechart-1.0.1.jar"/>
|
||||
<classpathentry kind="lib" path="lib/jep.jar"/>
|
||||
<classpathentry kind="lib" path="lib/JFontChooser.jar"/>
|
||||
<classpathentry kind="lib" path="lib/swing-layout-1.0.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/linux/Graph3d.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="lib" path="lib/logger/rxtx/RXTXcomm.jar"/>
|
||||
<classpathentry kind="lib" path="lib/logger/jcommon-1.0.0.jar"/>
|
||||
<classpathentry kind="lib" path="lib/logger/jfreechart-1.0.1.jar"/>
|
||||
<classpathentry kind="lib" path="lib/jep.jar"/>
|
||||
<classpathentry kind="lib" path="lib/JFontChooser.jar"/>
|
||||
<classpathentry kind="lib" path="lib/swing-layout-1.0.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/windows/lib/j3dcore.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/windows/Graph3d.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/windows/lib/j3dutils.jar"/>
|
||||
<classpathentry kind="lib" path="lib/Graph3d/windows/lib/vecmath.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
Binary file not shown.
|
@ -40,7 +40,7 @@ import javax.swing.KeyStroke;
|
|||
import javax.swing.border.LineBorder;
|
||||
|
||||
import com.ecm.graphics.Graph3dJPanel;
|
||||
import com.ecm.graphics.Graph3dManager;
|
||||
import com.ecm.graphics.Graph3dFrameManager;
|
||||
import com.ecm.graphics.data.GraphData;
|
||||
import com.ecm.graphics.data.GraphDataListener;
|
||||
|
||||
|
@ -304,7 +304,7 @@ public class TableToolBar extends JToolBar implements MouseListener, ItemListene
|
|||
*/
|
||||
|
||||
//TODO Remove this when above is working
|
||||
Graph3dManager.openGraph3dFrame(graphValues, xValues, yValues,xLabel, yLabel, zLabel, table.getName());
|
||||
Graph3dFrameManager.openGraph3dFrame(graphValues, xValues, yValues,xLabel, yLabel, zLabel, table.getName());
|
||||
GraphData.addGraphDataListener(this);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue