Changeset 2686
- Timestamp:
- 01/15/07 13:56:16 (2 years ago)
- Files:
-
- trunk/dabo/ui/uiwx/dMenu.py (modified) (3 diffs)
- trunk/dabo/ui/uiwx/dToolBar.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/ui/uiwx/dMenu.py
r2633 r2686 175 175 help string, bitmap, and also bind it to a function, all in one call. 176 176 177 NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version178 0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead177 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. 179 179 180 180 Any additional keyword arguments passed will be interpreted as properties … … 197 197 help string, bitmap, and also bind it to a function, all in one call. 198 198 199 NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version200 0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead199 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. 201 201 202 202 Any additional keyword arguments passed will be interpreted as properties … … 219 219 help string, bitmap, and also bind it to a function, all in one call. 220 220 221 NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version222 0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead221 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. 223 223 224 224 Any additional keyword arguments passed will be interpreted as properties trunk/dabo/ui/uiwx/dToolBar.py
r2633 r2686 93 93 'OnHit' param. 94 94 95 NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version96 0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead95 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. 97 97 """ 98 98 return self._appendInsertButton(None, caption, pic, bindfunc, … … 110 110 'OnHit' param. 111 111 112 NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version113 0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead112 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. 114 114 """ 115 115 return self._appendInsertButton(pos, caption, pic, bindfunc, … … 127 127 'OnHit' param. 128 128 129 NOTE: use of the bindfunc parameter is deprecated as of Jan 2007 (version130 0.7.1). It will be removed in version 0.8. Use the OnHit parameter instead129 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. 131 131 """ 132 132 return self.insertButton(0, caption, pic, bindfunc, toggle, tip, help, *args, **kwargs)
