Skip to content

Commit

Permalink
removes the word rows from the interface of dsquery.limit (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
tremblap authored Oct 31, 2024
1 parent 269c8b3 commit f788b7a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release-packaging/Classes/FluidDataSetQuery.sc
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ FluidDataSetQuery : FluidDataObject {
this.prSendMsg(this.clearMsg);
}

limitMsg{|rows|
^this.prMakeMsg(\limit,id,rows);
limitMsg{|points|
^this.prMakeMsg(\limit,id,points);
}

limit{|rows, action|
limit{|points, action|
actions[\limit] = [nil,action];
this.prSendMsg(this.limitMsg(rows));
this.prSendMsg(this.limitMsg(points));
}

transformMsg{|sourceDataSet, destDataSet|
Expand Down

0 comments on commit f788b7a

Please sign in to comment.