2011-07-16 14:28 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* src/rtl/gtgui/gtgui.c
    ! added cast to pacify msvc64 warning
This commit is contained in:
Viktor Szakats
2011-07-16 12:28:20 +00:00
parent 4f54382299
commit 989fe5c8fa
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-07-16 14:28 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/gtgui/gtgui.c
! added cast to pacify msvc64 warning
2011-07-16 14:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmysql/hbmysql.hbc
* contrib/sddmy/sddmy.hbc

View File

@@ -167,7 +167,7 @@ static int hb_gt_gui_optionPos( int id, int iType, PHB_ITEM pOptions )
}
if( iButton )
{
int iOptions = hb_arrayLen( pOptions ), i;
int iOptions = ( int ) hb_arrayLen( pOptions ), i;
for( i = 1; i <= iOptions; ++i )
{