atl: Use IS_INTRESOURCE not HIWORD to check a resource.

Michael Stefaniuc mstefani at redhat.de
Fri Jan 29 14:29:00 CST 2010


---
 dlls/atl/atl_ax.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/atl/atl_ax.c b/dlls/atl/atl_ax.c
index da595a4..2afc746 100644
--- a/dlls/atl/atl_ax.c
+++ b/dlls/atl/atl_ax.c
@@ -1208,7 +1208,7 @@ HWND WINAPI AtlAxCreateDialogA(HINSTANCE hInst, LPCSTR name, HWND owner, DLGPROC
     int length;
     WCHAR *nameW;
 
-    if ( HIWORD(name) == 0 )
+    if (IS_INTRESOURCE(name))
         return AtlAxCreateDialogW( hInst, (LPCWSTR) name, owner, dlgProc, param );
 
     length = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
-- 
1.6.6.1



More information about the wine-patches mailing list