Commit 9a974b89 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

user: Use SetPropW rather than SetPropA for internal property.

parent d70db020
...@@ -78,14 +78,16 @@ typedef struct ...@@ -78,14 +78,16 @@ typedef struct
/* ----- internal functions ----- */ /* ----- internal functions ----- */
static const WCHAR SysIP_W[] = { 'S','y','s','I','P',0 };
static inline INTERNALPOS *get_internal_pos( HWND hwnd ) 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 ) static inline void set_internal_pos( HWND hwnd, INTERNALPOS *pos )
{ {
SetPropA( hwnd, "SysIP", pos ); SetPropW( hwnd, SysIP_W, pos );
} }
/*********************************************************************** /***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment