Changeset 1505 for trunk/dll/comp.c


Ignore:
Timestamp:
Apr 12, 2010, 12:29:56 AM (15 years ago)
Author:
Gregg Young
Message:

Remove unnecessary type casts; minor formating cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/comp.c

    r1498 r1505  
    22002200        ULONG size = sizeof(SWP);
    22012201
    2202         PrfQueryProfileData(fmprof, (CHAR *) FM3Str, "CompDir.Position", (PVOID) &swp, &size);
     2202        PrfQueryProfileData(fmprof, FM3Str, "CompDir.Position", (PVOID) &swp, &size);
    22032203        swp.fl &= ~SWP_SIZE;            // 04 Feb 09 SHL ignore saved size
    22042204        WinSetWindowPos(hwnd,
     
    31233123
    31243124        WinQueryWindowPos(hwnd, &swp);
    3125         PrfWriteProfileData(fmprof, (CHAR *) FM3Str, "CompDir.Position", (PVOID) &swp,
     3125        PrfWriteProfileData(fmprof, FM3Str, "CompDir.Position", (PVOID) &swp,
    31263126                            size);
    31273127      }
     
    31413141        ULONG size = sizeof(SWP);
    31423142        WinQueryWindowPos(hwnd, &swp);
    3143         PrfWriteProfileData(fmprof, (CHAR *) FM3Str, "CompDir.Position", (PVOID) &swp,
     3143        PrfWriteProfileData(fmprof, FM3Str, "CompDir.Position", (PVOID) &swp,
    31443144                            size);
    31453145      }
Note: See TracChangeset for help on using the changeset viewer.