Ignore:
Timestamp:
Nov 24, 2011, 6:53:58 PM (14 years ago)
Author:
dmik
Message:

Port GDI32 to GCC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/gdi32/fontres.cpp

    r21304 r21816  
    7070
    7171    FntLock();
    72     for(int i=0;i<MAX_PUBLICFONTS;i++) {
     72    int i;
     73    for(i=0;i<MAX_PUBLICFONTS;i++) {
    7374        if(strcmp(publicfonts[i].szFaceName, lfFaceName) == 0) {
    7475#ifdef DEBUG
     
    328329    }
    329330    FntLock();
    330     for(int i=0;i<MAX_PUBLICFONTS;i++) {
     331    int i;
     332    for(i=0;i<MAX_PUBLICFONTS;i++) {
    331333        if(strcmp(publicfonts[i].szFontResName, lpszFont) == 0) 
    332334        {
Note: See TracChangeset for help on using the changeset viewer.