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 @@
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
.
+