- Timestamp:
- Sep 19, 2003, 9:05:12 PM (22 years ago)
- Location:
- branches/branch-1-0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/include/helpers/call_file_dlg.c
r160 r256 21 21 * 22 22 *@@added V0.9.19 (2002-04-24) [umoeller] 23 *@@changed V1.0.2 (2003-03-07) [umoeller]: HWND_DESKTOP owner causes focus problems, fixed 23 24 */ 24 25 … … 166 167 memset((PBYTE)pfdShared, 0, cbShared); 167 168 169 // fix HWND_DESKTOP owner V1.0.2 (2003-03-07) [umoeller] 170 if (hwndOwner == HWND_DESKTOP) 171 hwndOwner = NULLHANDLE; 172 168 173 // copy owner window 169 174 pfdShared->hwndOwner = hwndOwner; -
branches/branch-1-0/include/helpers/winh.h
r218 r256 71 71 #define BM_INDETERMINATE 2 // for tri-state checkboxes: indeterminate 72 72 73 // these undocumented msgs are posted whenever the mouse 74 // enters or leaves a window V1.0.1 (2002-11-30) [umoeller] 75 #ifndef WM_MOUSEENTER 76 #define WM_MOUSEENTER 0x041E 77 #define WM_MOUSELEAVE 0x041F 78 #endif 79 73 80 /* ****************************************************************** 74 81 * -
branches/branch-1-0/src/helpers/cctl_tooltip.c
r229 r256 218 218 *@@added V0.9.0 [umoeller] 219 219 *@@changed V0.9.12 (2001-04-28) [umoeller]: added mutex protection 220 *@@changed V1.0.2 (2003-07-26) [pr]: fixed tooltip moving with mouse from xcenters @@fixes 455 220 221 */ 221 222 … … 243 244 case WM_BUTTON3DOWN: 244 245 case WM_BUTTON3UP: 246 case WM_MOUSELEAVE: // V1.0.2 (2003-07-26) [pr]: @@fixes 455 245 247 { 246 248 QMSG qmsg; … … 779 781 *@@added V0.9.13 (2001-06-21) [umoeller] 780 782 *@@changed V0.9.19 (2002-05-14) [umoeller]: fixed bad stop timer, thanks yuri 783 *@@changed V1.0.2 (2003-07-26) [pr]: fixed tooltip moving with mouse from xcenters @@fixes 455 781 784 */ 782 785 … … 814 817 || (pqmsg->msg == WM_BUTTON2DOWN) 815 818 || (pqmsg->msg == WM_BUTTON3DOWN) 819 || (pqmsg->msg == WM_MOUSELEAVE) // V1.0.2 (2003-07-26) [pr]: @@fixes 455 816 820 ) 817 821 { … … 838 842 if ( (pttd->ptiMouseOver) 839 843 && (pttd->fIsActive) 844 && (pqmsg->msg != WM_MOUSELEAVE) // V1.0.2 (2003-07-26) [pr]: @@fixes 455 840 845 ) 841 846 { -
branches/branch-1-0/src/helpers/encodings.c
r229 r256 109 109 ENCODINGENTRY(cp936), 936 /* or 946?*/ , 110 110 0, DOUBLE, "Chinese", 111 ENCODINGENTRY(cp949), 9 51 /* or 949?*/ ,111 ENCODINGENTRY(cp949), 949 /* was 951, fixed V1.0.2 (2003-09-19) [umoeller] */ , 112 112 0, DOUBLE, "Korean", 113 ENCODINGENTRY(cp950), 9 47 /* or 950?*/ ,113 ENCODINGENTRY(cp950), 950 /* was 947, fixed V1.0.2 (2003-09-19) [umoeller] */ , 114 114 0, DOUBLE, "Taiwan Big-5", // default in China? 115 115 … … 188 188 * 189 189 *@@added V0.9.18 (2002-03-08) [umoeller] 190 *@@changed fixed Korean codepage from 951to 949 V1.0.2 (2003-09-19) [umoeller] 190 191 */ 191 192
Note:
See TracChangeset
for help on using the changeset viewer.