Changeset 2686

Show
Ignore:
Timestamp:
01/15/07 13:56:16 (2 years ago)
Author:
paul
Message:

Changed the wording of the bindfunc deprecation explanation to reflect that
the change appeared in 0.8 and bindfunc will be removed in 0.9.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/ui/uiwx/dMenu.py

    r2633 r2686  
    175175        help string, bitmap, and also bind it to a function, all in one call. 
    176176         
    177         NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version 
    178         0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead 
     177        NOTE: use of the bindfunc parameter is deprecated in version 0.8 and will be 
     178        removed    in version 0.9. Send an OnHit parameter instead. 
    179179 
    180180        Any additional keyword arguments passed will be interpreted as properties 
     
    197197        help string, bitmap, and also bind it to a function, all in one call. 
    198198 
    199         NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version 
    200         0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead 
     199        NOTE: use of the bindfunc parameter is deprecated in version 0.8 and will be 
     200        removed    in version 0.9. Send an OnHit parameter instead. 
    201201 
    202202        Any additional keyword arguments passed will be interpreted as properties 
     
    219219        help string, bitmap, and also bind it to a function, all in one call. 
    220220 
    221         NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version 
    222         0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead 
     221        NOTE: use of the bindfunc parameter is deprecated in version 0.8 and will be 
     222        removed    in version 0.9. Send an OnHit parameter instead. 
    223223 
    224224        Any additional keyword arguments passed will be interpreted as properties 
  • trunk/dabo/ui/uiwx/dToolBar.py

    r2633 r2686  
    9393        'OnHit' param. 
    9494 
    95         NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version 
    96         0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead 
     95        NOTE: use of the bindfunc parameter is deprecated in version 0.8 and will be 
     96        removed    in version 0.9. Send an OnHit parameter instead. 
    9797        """ 
    9898        return self._appendInsertButton(None, caption, pic, bindfunc,  
     
    110110        'OnHit' param. 
    111111 
    112         NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version 
    113         0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead 
     112        NOTE: use of the bindfunc parameter is deprecated in version 0.8 and will be 
     113        removed    in version 0.9. Send an OnHit parameter instead. 
    114114        """ 
    115115        return self._appendInsertButton(pos, caption, pic, bindfunc,  
     
    127127        'OnHit' param. 
    128128 
    129         NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version 
    130         0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead 
     129        NOTE: use of the bindfunc parameter is deprecated in version 0.8 and will be 
     130        removed    in version 0.9. Send an OnHit parameter instead. 
    131131        """ 
    132132        return self.insertButton(0, caption, pic, bindfunc, toggle, tip, help, *args, **kwargs)