[Sc-devel] SF.net SVN: supercollider: [6033]
trunk/build/SCClassLibrary/Common/Control /Score.sc
joshpar at users.sourceforge.net
joshpar at users.sourceforge.net
Thu May 31 11:10:23 PDT 2007
Revision: 6033
http://svn.sourceforge.net/supercollider/?rev=6033&view=rev
Author: joshpar
Date: 2007-05-31 10:10:23 -0700 (Thu, 31 May 2007)
Log Message:
-----------
Score now makes a copy of the list on init
Modified Paths:
--------------
trunk/build/SCClassLibrary/Common/Control/Score.sc
Modified: trunk/build/SCClassLibrary/Common/Control/Score.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/Control/Score.sc 2007-05-31 13:00:03 UTC (rev 6032)
+++ trunk/build/SCClassLibrary/Common/Control/Score.sc 2007-05-31 17:10:23 UTC (rev 6033)
@@ -18,7 +18,7 @@
}
init { arg list;
- score = list;
+ score = list.copy;
this.initTree;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Sc-devel
mailing list