/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/libvqdr/context.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 12:30:01 UTC
  • mfrom: (52.1.3 int64)
  • Revision ID: gustav.hartvigsson@gmail.com-20220601123001-b5xs60wwym810hg1
Merged: lp:~gustav.hartvigsson/vqdr/int64

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    }
19
19
    
20
20
    public void set_value (string name, 
21
 
                           int min_val,
22
 
                           int max_val,
23
 
                           int current_val) {
 
21
                           int32 min_val,
 
22
                           int32 max_val,
 
23
                           int32 current_val) {
24
24
      set_variable (name, Variable (min_val, max_val, current_val));
25
25
    }
26
26