[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-dev] SF.net SVN: quarks:[2528] dewdrop_lib/ddwChucklib/Prt.sc
Revision: 2528
http://quarks.svn.sourceforge.net/quarks/?rev=2528&view=rev
Author: jamshark70
Date: 2012-12-30 13:54:54 +0000 (Sun, 30 Dec 2012)
Log Message:
-----------
Use the proper fallback class (Prout, not Proutine) for the deprecated Prt
Modified Paths:
--------------
dewdrop_lib/ddwChucklib/Prt.sc
Modified: dewdrop_lib/ddwChucklib/Prt.sc
===================================================================
--- dewdrop_lib/ddwChucklib/Prt.sc 2012-12-22 13:01:49 UTC (rev 2527)
+++ dewdrop_lib/ddwChucklib/Prt.sc 2012-12-30 13:54:54 UTC (rev 2528)
@@ -47,19 +47,7 @@
Prt : Proutine {
var <>envir;
*new { arg routineFunc;
- "Prt is deprecated. Use Proutine instead.".postln
- ^Proutine(routineFunc)
-// ^super.new(routineFunc).envir_(currentEnvironment)
+ "Prt is deprecated. Use Prout instead.".postln
+ ^Prout(routineFunc)
}
-
-// asStream {
-// var stream;
-//
-// envir.notNil.if({ envir.use({ stream = super.asStream; }) },
-// { stream = super.asStream; });
-//
-// ^FuncStream({ |inval|
-// inval.notNil.if({ stream.next(inval) });
-// }, { stream.reset })
-// }
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
_______________________________________________
sc-dev mailing list
info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-dev/
search: https://listarc.bham.ac.uk/lists/sc-dev/search/