Index: doc/next-migration.html =================================================================== diff -u -re2f11549ef70518cca8c9c49b1d78f4383b00a87 -r7d7f47ce5d7b7c2d252af5d4499b50996f6475ff --- doc/next-migration.html (.../next-migration.html) (revision e2f11549ef70518cca8c9c49b1d78f4383b00a87) +++ doc/next-migration.html (.../next-migration.html) (revision 7d7f47ce5d7b7c2d252af5d4499b50996f6475ff) @@ -109,12 +109,12 @@ set :things "" } - :method push {thing} { + :public method push {thing} { set :things [linsert ${:things} 0 $thing] return $thing } - :method pop {} { + :public method pop {} { set top [lindex ${:things} 0] set :things [lrange ${:things} 1 end] return $top @@ -182,7 +182,7 @@ # Define a class using Next Class create C2 { - :method foo {} {puts "hello world"} + :public method foo {} {puts "hello world"} } } @@ -1421,7 +1421,10 @@

Slots

All slot objects (also those in XOTcl) are now always -next-scripting objects of baseclass ::nx::Slot

+next-scripting objects of baseclass ::nx::Slot. +The name of the experimental default-setter initcmd was +changed to defaultcmd. +

Obsolete commands

@@ -1446,6 +1449,6 @@
- Last modified: Sun Sep 26 14:16:38 CEST 2010 + Last modified: Fri Oct 1 11:58:31 CEST 2010