Changeset 5479 for trunk/src/gdi32/text.cpp
- Timestamp:
- Apr 4, 2001, 4:20:52 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/text.cpp
r5472 r5479 1 /* $Id: text.cpp,v 1.1 5 2001-04-04 09:02:15sandervl Exp $ */1 /* $Id: text.cpp,v 1.16 2001-04-04 14:20:52 sandervl Exp $ */ 2 2 3 3 /* … … 455 455 456 456 if(cchText == -1) { 457 UnicodeToAsciiString((LPWSTR)lpchText);457 astring = UnicodeToAsciiString((LPWSTR)lpchText); 458 458 } 459 459 else { … … 522 522 523 523 if(nCount == -1) { 524 UnicodeToAsciiString((LPWSTR)lpString);524 astring = UnicodeToAsciiString((LPWSTR)lpString); 525 525 } 526 526 else { … … 610 610 611 611 if(nCount == -1) { 612 UnicodeToAsciiString((LPWSTR)lpString);612 astring = UnicodeToAsciiString((LPWSTR)lpString); 613 613 } 614 614 else { … … 781 781 782 782 if(cbCount == -1) { 783 UnicodeToAsciiString((LPWSTR)lpszString);783 astring = UnicodeToAsciiString((LPWSTR)lpszString); 784 784 } 785 785 else {
Note:
See TracChangeset
for help on using the changeset viewer.