2011-02-11 21:57 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbqt/qtcore/hbqt_pointer.cpp
  * contrib/hbqt/qtcore/hbqt.h
    ! Fixed type param sign in prev.
This commit is contained in:
Viktor Szakats
2011-02-11 20:58:06 +00:00
parent 69d2cfd4a7
commit 5ea4695a2e
3 changed files with 7 additions and 2 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-11 21:57 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/qtcore/hbqt_pointer.cpp
* contrib/hbqt/qtcore/hbqt.h
! Fixed type param sign in prev.
2011-02-11 21:33 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/qtcore/hbqt_pointer.cpp
* contrib/hbqt/qtcore/hbqt.h

View File

@@ -93,7 +93,7 @@ extern HB_EXPORT void * hbqt_gcpointer( int iParam );
extern HB_EXPORT void * hbqt_detachgcpointer( int iParam );
extern HB_EXPORT const HB_GC_FUNCS * hbqt_gcFuncs( void );
extern HB_EXPORT void * hbqt_pPtrFromObj( int iParam );
extern HB_EXPORT int hbqt_IsObjectType( int iParam, int iType );
extern HB_EXPORT int hbqt_IsObjectType( int iParam, unsigned int iType );
extern HB_EXPORT void hbqt_errRT_ARG( void );
HB_EXTERN_END

View File

@@ -186,7 +186,7 @@ void * hbqt_pPtrFromObj( int iParam )
}
}
int hbqt_IsObjectType( int iParam, int iType )
int hbqt_IsObjectType( int iParam, unsigned int iType )
{
PHB_ITEM pItem;