Changeset 3428 for trunk/src/comctl32
- Timestamp:
 - Apr 19, 2000, 4:47:24 PM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/comctl32/toolbar.cpp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/comctl32/toolbar.cpp
r3182 r3428 1 /* $Id: toolbar.cpp,v 1. 4 2000-03-21 17:30:44 cbratschiExp $ */1 /* $Id: toolbar.cpp,v 1.5 2000-04-19 14:47:24 sandervl Exp $ */ 2 2 /* 3 3 * Toolbar control … … 3471 3471 INT x; 3472 3472 3473 for (x = 0;x < infoPtr->nNumButtons;x++) COMCTL32_Free(infoPtr->buttons[x].pszName); 3473 //SvL: Check pointers 3474 for (x = 0;x < infoPtr->nNumButtons;x++) 3475 if(infoPtr->buttons[x].pszName) 3476 COMCTL32_Free(infoPtr->buttons[x].pszName); 3477 3474 3478 COMCTL32_Free(infoPtr->buttons); 3475 3479 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  