Ignore:
Timestamp:
Apr 4, 2001, 4:20:52 PM (24 years ago)
Author:
sandervl
Message:

string conversion fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/text.cpp

    r5472 r5479  
    1 /* $Id: text.cpp,v 1.15 2001-04-04 09:02:15 sandervl Exp $ */
     1/* $Id: text.cpp,v 1.16 2001-04-04 14:20:52 sandervl Exp $ */
    22
    33/*
     
    455455
    456456  if(cchText == -1) {
    457      UnicodeToAsciiString((LPWSTR)lpchText);
     457     astring = UnicodeToAsciiString((LPWSTR)lpchText);
    458458  }
    459459  else {
     
    522522
    523523  if(nCount == -1) {
    524      UnicodeToAsciiString((LPWSTR)lpString);
     524     astring = UnicodeToAsciiString((LPWSTR)lpString);
    525525  }
    526526  else {
     
    610610
    611611  if(nCount == -1) {
    612      UnicodeToAsciiString((LPWSTR)lpString);
     612     astring = UnicodeToAsciiString((LPWSTR)lpString);
    613613  }
    614614  else {
     
    781781
    782782  if(cbCount == -1) {
    783      UnicodeToAsciiString((LPWSTR)lpszString);
     783     astring = UnicodeToAsciiString((LPWSTR)lpszString);
    784784  }
    785785  else {
Note: See TracChangeset for help on using the changeset viewer.