mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
user: Use SetPropW rather than SetPropA for internal property.
This commit is contained in:
parent
d70db020a6
commit
9a974b899b
@ -78,14 +78,16 @@ typedef struct
|
||||
|
||||
/* ----- internal functions ----- */
|
||||
|
||||
static const WCHAR SysIP_W[] = { 'S','y','s','I','P',0 };
|
||||
|
||||
static inline INTERNALPOS *get_internal_pos( HWND hwnd )
|
||||
{
|
||||
return GetPropA( hwnd, "SysIP" );
|
||||
return GetPropW( hwnd, SysIP_W );
|
||||
}
|
||||
|
||||
static inline void set_internal_pos( HWND hwnd, INTERNALPOS *pos )
|
||||
{
|
||||
SetPropA( hwnd, "SysIP", pos );
|
||||
SetPropW( hwnd, SysIP_W, pos );
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user