diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-12 15:18:39 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-12 15:18:39 +0000 |
commit | db1798affd224390db5f7c260ab7c898646da65e (patch) | |
tree | 7fc2f45b45fa5e4d0e3ec427838cd6d2b9ec6d7a | |
parent | adb7dc9f4414e23bad1815fe592f74cfe7ff956e (diff) |
use 0.43's pdsend command in place of <0.43's pd
svn path=/trunk/externals/loaders/tclpd/; revision=15574
-rw-r--r-- | examples/properties.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/properties.tcl b/examples/properties.tcl index d225d74..6579389 100644 --- a/examples/properties.tcl +++ b/examples/properties.tcl @@ -415,9 +415,9 @@ proc propertiespanel_apply {w} { lappend newconf $key $v } set newconf [string map {$ \\$} $newconf] - pd [linsert $newconf 0 $::id($w) config]\; + pdsend "$::id($w) config $newconf" } proc propertiespanel_close {w} { - pd [concat $::id($w) cancel \;] + pdsend "$::id($w) cancel" } |