Revision: 107
http://patchanim.svn.sourceforge.net/patchanim/?rev=107&view=rev
Author: dbrosius
Date: 2008-02-07 21:46:45 -0800 (Thu, 07 Feb 2008)
Log Message:
-----------
FCBL fix
Modified Paths:
--------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java
Modified: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java 2008-02-08 05:44:45 UTC (rev 106)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/JPatchAnimPanel.java 2008-02-08 05:46:45 UTC (rev 107)
@@ -29,10 +29,9 @@
import com.mebigfatguy.patchanim.PatchColor;
public class JPatchAnimPanel extends JPanel {
-
- private static final long serialVersionUID = 7719900566976553103L;
- private JPatchControlPanel ctrl;
+ private static final long serialVersionUID = 3030850111559417377L;
+
public JPatchAnimPanel() {
initComponents();
}
@@ -41,7 +40,7 @@
setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
JPanel p = new JPanel();
p.setLayout(new BorderLayout(4, 4));
- ctrl = new JPatchControlPanel();
+ JPatchControlPanel ctrl = new JPatchControlPanel();
p.add(ctrl, BorderLayout.WEST);
JPatchSamplePanel sample = new JPatchSamplePanel(PatchColor.Combined);
JPanel q = new JPanel();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|