Changeset 3182 for trunk/src/comctl32/toolbar.cpp
- Timestamp:
- Mar 21, 2000, 6:30:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/toolbar.cpp
r3154 r3182 1 /* $Id: toolbar.cpp,v 1. 3 2000-03-18 16:17:31cbratschi Exp $ */1 /* $Id: toolbar.cpp,v 1.4 2000-03-21 17:30:44 cbratschi Exp $ */ 2 2 /* 3 3 * Toolbar control … … 759 759 760 760 tbNotify.iItem = pos; 761 tbNotify.tbButton = (TBBUTTON*)btnPtr; 761 tbNotify.tbButton.iBitmap = btnPtr->iBitmap; 762 tbNotify.tbButton.idCommand = btnPtr->idCommand; 763 tbNotify.tbButton.fsState = btnPtr->fsState; 764 tbNotify.tbButton.fsStyle = btnPtr->fsStyle; 765 tbNotify.tbButton.dwData = btnPtr->dwData; 766 tbNotify.tbButton.iString = btnPtr->iString; 767 762 768 tbNotify.cchText = MAXTOOLNAME; 763 769 if (unicode) … … 843 849 844 850 tbNotify.iItem = i; 845 tbNotify.tbButton = (TBBUTTON*)btnPtr; 851 tbNotify.tbButton.iBitmap = btnPtr->iBitmap; 852 tbNotify.tbButton.idCommand = btnPtr->idCommand; 853 tbNotify.tbButton.fsState = btnPtr->fsState; 854 tbNotify.tbButton.fsStyle = btnPtr->fsStyle; 855 tbNotify.tbButton.dwData = btnPtr->dwData; 856 tbNotify.tbButton.iString = btnPtr->iString; 846 857 tbNotify.cchText = 0; 847 858 tbNotify.pszText = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.