Ignore:
Timestamp:
Sep 5, 1999, 2:03:34 PM (26 years ago)
Author:
sandervl
Message:

Dialog update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/window.cpp

    r821 r833  
    1 /* $Id: window.cpp,v 1.22 1999-09-04 19:42:30 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.23 1999-09-05 12:03:34 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    572572        return 0;
    573573    }
    574     rc = window->GetWindowText(lpsz, cch);
     574    rc = window->GetWindowTextA(lpsz, cch);
    575575    dprintf(("GetWindowTextA %x %s", hwnd, lpsz));
    576576    return rc;
     
    595595    }
    596596    dprintf(("GetWindowTextW %x", hwnd));
    597     return window->GetWindowText((LPSTR)lpsz, cch);
     597    return window->GetWindowTextW(lpsz, cch);
    598598}
    599599//******************************************************************************
     
    609609    }
    610610    dprintf(("SetWindowTextA %x %s", hwnd, lpsz));
    611     return window->SetWindowText((LPSTR)lpsz);
     611    return window->SetWindowTextA((LPSTR)lpsz);
    612612}
    613613//******************************************************************************
     
    623623    }
    624624    dprintf(("SetWindowTextW %x", hwnd));
    625     return window->SetWindowText((LPSTR)lpsz);
     625    return window->SetWindowTextW((LPWSTR)lpsz);
    626626}
    627627/*******************************************************************
Note: See TracChangeset for help on using the changeset viewer.