Changeset 833 for trunk/src/user32/new/window.cpp
- Timestamp:
- Sep 5, 1999, 2:03:34 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/window.cpp
r821 r833 1 /* $Id: window.cpp,v 1.2 2 1999-09-04 19:42:30sandervl Exp $ */1 /* $Id: window.cpp,v 1.23 1999-09-05 12:03:34 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 572 572 return 0; 573 573 } 574 rc = window->GetWindowText (lpsz, cch);574 rc = window->GetWindowTextA(lpsz, cch); 575 575 dprintf(("GetWindowTextA %x %s", hwnd, lpsz)); 576 576 return rc; … … 595 595 } 596 596 dprintf(("GetWindowTextW %x", hwnd)); 597 return window->GetWindowText ((LPSTR)lpsz, cch);597 return window->GetWindowTextW(lpsz, cch); 598 598 } 599 599 //****************************************************************************** … … 609 609 } 610 610 dprintf(("SetWindowTextA %x %s", hwnd, lpsz)); 611 return window->SetWindowText ((LPSTR)lpsz);611 return window->SetWindowTextA((LPSTR)lpsz); 612 612 } 613 613 //****************************************************************************** … … 623 623 } 624 624 dprintf(("SetWindowTextW %x", hwnd)); 625 return window->SetWindowText ((LPSTR)lpsz);625 return window->SetWindowTextW((LPWSTR)lpsz); 626 626 } 627 627 /*******************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.