Changeset 263:27244095ce14 for dwt/widgets/Shell.d
- Timestamp:
- 07/25/08 20:08:41 (6 months ago)
- Files:
-
- dwt/widgets/Shell.d (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/widgets/Shell.d
r246 r263 650 650 static if (OS.IsWinCE) return; 651 651 TOOLINFO lpti; 652 lpti.cbSize = TOOLINFO.sizeof;652 lpti.cbSize = OS.TOOLINFO_sizeof; 653 653 lpti.hwnd = handle; 654 654 lpti.uId = toolTip.id; … … 697 697 if (balloonTipHandle_ !is null) { 698 698 TOOLINFO lpti; 699 lpti.cbSize = TOOLINFO.sizeof;699 lpti.cbSize = OS.TOOLINFO_sizeof; 700 700 lpti.uId = toolTip.id; 701 701 lpti.hwnd = handle; … … 847 847 if (toolTipHandle_ is null) return; 848 848 TOOLINFO lpti; 849 lpti.cbSize = TOOLINFO.sizeof;849 lpti.cbSize = OS.TOOLINFO_sizeof; 850 850 if (OS.SendMessage (toolTipHandle_, OS.TTM_GETCURRENTTOOL, 0, &lpti) !is 0) { 851 851 if ((lpti.uFlags & OS.TTF_IDISHWND) !is 0) { … … 940 940 if (OS.SendMessage (hwndToolTip, OS.TTM_GETCURRENTTOOL, 0, 0) !is 0) { 941 941 TOOLINFO lpti; 942 lpti.cbSize = TOOLINFO.sizeof;942 lpti.cbSize = OS.TOOLINFO_sizeof; 943 943 if (OS.SendMessage (hwndToolTip, OS.TTM_GETCURRENTTOOL, 0, &lpti) !is 0) { 944 944 if ((lpti.uFlags & OS.TTF_IDISHWND) is 0) return findToolTip (lpti.uId); … … 1676 1676 static if (OS.IsWinCE) return; 1677 1677 TOOLINFO lpti; 1678 lpti.cbSize = TOOLINFO.sizeof;1678 lpti.cbSize = OS.TOOLINFO_sizeof; 1679 1679 lpti.hwnd = handle; 1680 1680 lpti.uId = cast(uint) hwnd;
