2000-06-02 02:54 UTC+0100 Victor Szakats <info@szelvesz.hu>
This commit is contained in:
@@ -13,6 +13,9 @@
|
||||
* source/compiler/harbour.c
|
||||
! Fixed GCC -O2 warning.
|
||||
|
||||
* source/compiler/harbour.y
|
||||
! Two RSXNT warnings fixed.
|
||||
|
||||
2000-06-01 22:18 UTC+0100 Victor Szakats <info@szelvesz.hu>
|
||||
|
||||
* source/lang/msgcswin.c
|
||||
|
||||
@@ -1166,7 +1166,7 @@ DecMethod : IdentName '(' { hb_comp_pLastMethod = hb_compMethodAdd( hb_comp_pLa
|
||||
if( ! hb_comp_pLastMethod->pClass )
|
||||
{
|
||||
hb_compGenWarning( hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, hb_comp_szFromClass, hb_comp_pLastMethod->szName );
|
||||
hb_comp_pLastMethod->cType = ( isupper( hb_comp_cVarType ) ? 'O' : 'o' );
|
||||
hb_comp_pLastMethod->cType = ( isupper( ( int ) hb_comp_cVarType ) ? 'O' : 'o' );
|
||||
}
|
||||
|
||||
/* Resetting */
|
||||
@@ -1193,7 +1193,7 @@ DecData : IdentName { hb_comp_pLastMethod = hb_compMethodAdd( hb_comp_pLastCl
|
||||
if( ! hb_comp_pLastMethod->pClass )
|
||||
{
|
||||
hb_compGenWarning( hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, hb_comp_szFromClass, hb_comp_pLastMethod->szName );
|
||||
hb_comp_pLastMethod->cType = ( isupper( hb_comp_cVarType ) ? 'O' :'o' );
|
||||
hb_comp_pLastMethod->cType = ( isupper( ( int ) hb_comp_cVarType ) ? 'O' :'o' );
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user