Ignore:
Timestamp:
Apr 26, 2015, 3:32:25 PM (8 years ago)
Author:
roman
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Utilities/Miscellaneous/PolyTextOut/PolyTextOut.cpp

    r407 r408  
    1818        pPolyTexts[0].x = Position.x;
    1919        pPolyTexts[0].y = Position.y;
    20     pPolyTexts[0].n = (INT) _tcslen(pszText);
    21     pPolyTexts[0].lpstr = pszText;
    22     pPolyTexts[0].uiFlags = 0;
     20        pPolyTexts[0].n = (INT) _tcslen(pszText);
     21        pPolyTexts[0].lpstr = pszText;
     22        pPolyTexts[0].uiFlags = 0;
    2323        SetRect(&pPolyTexts[0].rcl, Position.x, Position.y, Extent.cx, Extent.cy);
    24     pPolyTexts[0].pdx = NULL;
     24        pPolyTexts[0].pdx = NULL;
    2525        if(bExtTextOut)
    2626                for(auto&& PolyText: pPolyTexts)
     
    3434        LOGFONT FontFormat;
    3535        ZeroMemory(&FontFormat, sizeof FontFormat);
    36     FontFormat.lfHeight = -28;
     36        FontFormat.lfHeight = -28;
    3737        FontFormat.lfWeight = FW_SEMIBOLD;
    38     FontFormat.lfCharSet = DEFAULT_CHARSET;
     38        FontFormat.lfCharSet = DEFAULT_CHARSET;
    3939        _tcscpy_s(FontFormat.lfFaceName, _T("Arial"));
    4040        HFONT hFont = CreateFontIndirect(&FontFormat);
     
    4949                L"Mother washed window",
    5050                L"ママソープフレーム", // Japanese
    51                 L"დედა საპნის კარკასი", // Georgean
     51                L"დედა საპნის კარკასი", // Georgian
    5252        };
    5353        for(auto&& pszText: g_ppszTexts)
Note: See TracChangeset for help on using the changeset viewer.