Changeset 842 for trunk/src/3rdparty/os2/xsystray
- Timestamp:
- Mar 27, 2011, 2:13:43 PM (14 years ago)
- Location:
- trunk/src/3rdparty/os2/xsystray/plugin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/os2/xsystray/plugin/w_xsystray.c
r841 r842 180 180 181 181 #define TID_CHECKALIVE 1 182 182 // timer that checks if windows associated with icons are still alive 183 183 #define TID_CHECKALIVE_TIMEOUT 2000 // ms 184 184 // how often to perform alive checks 185 185 186 186 static ULONG WM_XST_CREATED = 0; … … 657 657 pszl->cx = pad + (pSysTrayData->lIconWidth + pad) * cnt; 658 658 else 659 pszl->cx = 0;659 pszl->cx = ; 660 660 // desired minimum height 661 661 pszl->cy = pSysTrayData->lIconHeight + pad * 2; … … 687 687 688 688 if (!pIconData || !pIconData->pszToolTip) 689 pttt->pszText = NULL; 689 { 690 pttt->pszText = pSysTrayData->cIcons ? 691 "Indicator area" : "Indicator area (empty)"; 692 } 690 693 else 691 694 { -
trunk/src/3rdparty/os2/xsystray/plugin/w_xsystray.h
r839 r842 33 33 if (f == NULL) 34 34 { 35 f = fopen(ENABLE_LOG_TO, " a");35 f = fopen(ENABLE_LOG_TO, ""); 36 36 setbuf(f, NULL); 37 37 }
Note:
See TracChangeset
for help on using the changeset viewer.