From: Michael Andreen Date: Mon, 28 Apr 2003 09:37:41 +0000 (+0000) Subject: wrong class name.. sorry X-Git-Url: https://ruin.nu/git/?p=moosique.git;a=commitdiff_plain;h=fb3ba029459c683c9180e9e3ccc0e89654288411 wrong class name.. sorry --- diff --git a/MooNotePref.java b/MooNotePref.java deleted file mode 100644 index 6a42fff..0000000 --- a/MooNotePref.java +++ /dev/null @@ -1,26 +0,0 @@ -import javax.swing.*; -import java.awt.*; -import java.awt.event.*; - -/* - * Graphical representation of a MIDI note. - * - * @author Andersson, Andreen, Lanneskog, Pehrson - * @version 1 - */ - -public class MooNotePref extends JFrame{ - - private MooNote note; - /* - * Creates a new note preference dialog. - * @param mn The note that will be graphically represented - */ - public MooNotePref (MooNote mn) { - note = mn; - - pack(); - } - - -} diff --git a/MooNoteProp.java b/MooNoteProp.java new file mode 100644 index 0000000..bc26486 --- /dev/null +++ b/MooNoteProp.java @@ -0,0 +1,26 @@ +import javax.swing.*; +import java.awt.*; +import java.awt.event.*; + +/* + * Graphical representation of a MIDI note. + * + * @author Andersson, Andreen, Lanneskog, Pehrson + * @version 1 + */ + +public class MooNoteProp extends JFrame{ + + private MooNote note; + /* + * Creates a new note preference dialog. + * @param mn The note that will be graphically represented + */ + public MooNoteProp (MooNote mn) { + note = mn; + + pack(); + } + + +}