mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
small bugfix
svn path=/trunk/; revision=5684
This commit is contained in:
parent
0bed5b1747
commit
c301cf0343
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: class.c,v 1.35 2003/08/19 23:41:20 weiden Exp $
|
||||
/* $Id: class.c,v 1.36 2003/08/19 23:54:26 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -82,7 +82,7 @@ GetClassInfoExA(
|
|||
{
|
||||
lpwcx->lpszMenuName = heap_string_poolA ( str2.Buffer, str2.Length );
|
||||
}
|
||||
if ( !IS_INTRESOURCE(w.lpszClassName) && w.lpszClassName )
|
||||
if ( !IS_ATOM(w.lpszClassName) && w.lpszClassName )
|
||||
{
|
||||
lpwcx->lpszClassName = heap_string_poolA ( str3.Buffer, str3.Length );
|
||||
}
|
||||
|
@ -158,7 +158,7 @@ GetClassInfoExW(
|
|||
{
|
||||
lpwcx->lpszMenuName = heap_string_poolW ( str2.Buffer, str2.Length );
|
||||
}
|
||||
if ( !IS_INTRESOURCE(w.lpszClassName) && w.lpszClassName )
|
||||
if ( !IS_ATOM(w.lpszClassName) && w.lpszClassName )
|
||||
{
|
||||
lpwcx->lpszClassName = heap_string_poolW ( str3.Buffer, str3.Length );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue