Ignore:
Timestamp:
Sep 19, 2003, 9:05:12 PM (22 years ago)
Author:
umoeller
Message:

Buncha fixes.

Location:
branches/branch-1-0/src/helpers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1-0/src/helpers/cctl_tooltip.c

    r229 r256  
    218218 *@@added V0.9.0 [umoeller]
    219219 *@@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
    220221 */
    221222
     
    243244                case WM_BUTTON3DOWN:
    244245                case WM_BUTTON3UP:
     246                case WM_MOUSELEAVE: // V1.0.2 (2003-07-26) [pr]: @@fixes 455
    245247                {
    246248                    QMSG qmsg;
     
    779781 *@@added V0.9.13 (2001-06-21) [umoeller]
    780782 *@@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
    781784 */
    782785
     
    814817             || (pqmsg->msg == WM_BUTTON2DOWN)
    815818             || (pqmsg->msg == WM_BUTTON3DOWN)
     819             || (pqmsg->msg == WM_MOUSELEAVE) // V1.0.2 (2003-07-26) [pr]: @@fixes 455
    816820           )
    817821        {
     
    838842            if (    (pttd->ptiMouseOver)
    839843                 && (pttd->fIsActive)
     844                 && (pqmsg->msg != WM_MOUSELEAVE) // V1.0.2 (2003-07-26) [pr]: @@fixes 455
    840845               )
    841846            {
  • branches/branch-1-0/src/helpers/encodings.c

    r229 r256  
    109109        ENCODINGENTRY(cp936),      936 /* or 946?*/ ,
    110110                                         0, DOUBLE, "Chinese",
    111         ENCODINGENTRY(cp949),      951 /* or 949?*/ ,
     111        ENCODINGENTRY(cp949),      949 /* was 951, fixed V1.0.2 (2003-09-19) [umoeller] */ ,
    112112                                         0, DOUBLE, "Korean",
    113         ENCODINGENTRY(cp950),      947 /* or 950?*/ ,
     113        ENCODINGENTRY(cp950),      950 /* was 947, fixed V1.0.2 (2003-09-19) [umoeller] */ ,
    114114                                         0, DOUBLE, "Taiwan Big-5",           // default in China?
    115115
     
    188188 *
    189189 *@@added V0.9.18 (2002-03-08) [umoeller]
     190 *@@changed fixed Korean codepage from 951to 949 V1.0.2 (2003-09-19) [umoeller]
    190191 */
    191192
Note: See TracChangeset for help on using the changeset viewer.