Changeset 2484

Show
Ignore:
Timestamp:
11/10/08 02:11:08 (2 months ago)
Author:
bzr
Message:

Sapi4: fix some typos where min and max properties are really preceded with an underline.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-11-10 09:49:19.440000057 +1100 
         1timestamp: 2008-11-10 13:07:43.644000053 +1100 
        22committer: Michael Curran <mick@kulgan.net> 
        33properties:  
    • Property bzr:revision-id:v3-list-QlpoOTFBWSZTWbrL2vUAAB1VgAAQABCAQDrrnqAgAFCgaaGRkxBoTIJ6mmaNRwhndFAoNhZjh_YY4a01fOg1ulgNNC2UrzPdXXEnDpX8XckU4UJC6y9r1A..
      •  

        old new  
        2532532281 jamie@jantrid.net-20081109114527-f0kqf0o8k8713bsc 
        2542542282 mick@kulgan.net-20081109224919-7rp3kij24boyy66f 
         2552283 mick@kulgan.net-20081110020743-z5y2l2uchybtavtu 
  • trunk/source/synthDrivers/sapi4.py

    r2483 r2484  
    113113                        self._maxRate=newVal.value-1 
    114114                        self._ttsAttrs.SpeedSet(oldVal.value) 
    115                         if self.maxRate<=self.minRate: 
     115                        if self._maxRate<=self._minRate: 
    116116                                self.hasRate=False 
    117117                #Find out pitch limits 
     
    128128                        self._maxPitch=newVal.value 
    129129                        self._ttsAttrs.PitchSet(oldVal.value) 
    130                         if self.maxPitch<=self.minPitch: 
     130                        if self._maxPitch<=self._minPitch: 
    131131                                self.hasPitch=False 
    132132                #Find volume limits 
     
    143143                        self._maxVolume=newVal.value 
    144144                        self._ttsAttrs.VolumeSet(oldVal.value) 
    145                         if self.maxVolume<=self.minVolume: 
     145                        if self._maxVolume<=self._minVolume: 
    146146                                self.hasVolume=False 
    147147