[Pixelle-commit] SF.net SVN: pixelle:[264] trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs /Algor
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-07-17 05:01:02
|
Revision: 264
http://pixelle.svn.sourceforge.net/pixelle/?rev=264&view=rev
Author: dbrosius
Date: 2009-07-17 05:00:52 +0000 (Fri, 17 Jul 2009)
Log Message:
-----------
use PixelleComponent now
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/AlgorithmEditor.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/AlgorithmEditor.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/AlgorithmEditor.java 2009-07-17 05:00:10 UTC (rev 263)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/AlgorithmEditor.java 2009-07-17 05:00:52 UTC (rev 264)
@@ -31,8 +31,8 @@
import javax.swing.JPanel;
import javax.swing.JScrollPane;
-import com.mebigfatguy.pixelle.AlgorithmType;
import com.mebigfatguy.pixelle.PixelleBundle;
+import com.mebigfatguy.pixelle.PixelleComponent;
import com.mebigfatguy.pixelle.utils.GuiUtils;
import com.mebigfatguy.pixelle.utils.GuiUtils.Sizing;
@@ -46,12 +46,12 @@
private JButton ok;
private JButton cancel;
- public AlgorithmEditor(AlgorithmType algorithm, Point pt, Dimension dim) {
+ public AlgorithmEditor(PixelleComponent component, Point pt, Dimension dim) {
initComponents();
initListeners();
- setTitle(algorithm.toString());
+ setTitle(component.toString());
setLocation(pt);
setSize(dim);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|