Changeset 21602 for trunk/src/shell32/systray.c
- Timestamp:
- Mar 23, 2011, 11:44:45 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/systray.c
r21600 r21602 190 190 191 191 free(*ptrayItem); 192 192 193 *ptrayItem = next; 193 194 194 195 return TRUE; 195 196 } 197 196 198 ptrayItem = &((*ptrayItem)->nextTrayItem); 197 199 } … … 226 228 227 229 return NULL; /* not found */ 230 } 231 232 /************************************************************************* 233 * 234 */ 235 void SYSTRAY_PruneAllItems(void) 236 { 237 SystrayItem *ptrayItem = systray; 238 239 while (ptrayItem) 240 { 241 SystrayItem *next = ptrayItem->nextTrayItem; 242 243 TRACE("SYSTRAY_PruneAllItems %p: uIdx %u, hWnd 0x%08x, uID %d\n", 244 ptrayItem, ptrayItem->uIdx, ptrayItem->notifyIcon.hWnd, 245 ptrayItem->notifyIcon.uID); 246 247 SYSTRAY_ItemTerm(ptrayItem); 248 249 free(ptrayItem); 250 251 ptrayItem = next; 252 } 253 254 systray = NULL; 228 255 } 229 256
Note:
See TracChangeset
for help on using the changeset viewer.