Advertisement
Guest User

Untitled

a guest
Jun 14th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. from
  2. (define gnc:html-piechart-set-data!
  3. (record-modifier <html-piechart> 'data))
  4.  
  5. to
  6. (define (gnc:html-piechart-set-data! pie newdata)
  7. (if (gnc:html-chart? pie)
  8. (issue-deprecation-warning "uhhh wrong api.")
  9. ((record-modifier <html-piechart> 'data)) pie newdata)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement