Add retro-proof constructors for DataSet and LabelSet

(simply consume surplus name argument rather than forwarding up the 
chain)
nix
Owen Green 5 years ago
parent 42cc43f89d
commit d49ba1bbb0

@ -1,6 +1,7 @@
FluidDataSet : FluidDataObject
{
*new{|server| ^super.new(server) }
addPointMsg{|label,buffer|
buffer = this.prEncodeBuffer(buffer);

@ -1,5 +1,7 @@
FluidLabelSet : FluidDataObject {
*new{|server| ^super.new(server) }
addLabelMsg{|identifier,label|
^this.prMakeMsg(\addLabel,id,identifier.asSymbol,label.asSymbol);
}

Loading…
Cancel
Save