2009-12-18 10:55 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/hbqt.h
* contrib/hbqt/hbqt_destruct.cpp
! Added missing 'extern'.
% Deleted '#include hbstack.h'
* Formatting.
This commit is contained in:
@@ -17,6 +17,13 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-12-18 10:55 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbqt/hbqt.h
|
||||
* contrib/hbqt/hbqt_destruct.cpp
|
||||
! Added missing 'extern'.
|
||||
% Deleted '#include hbstack.h'
|
||||
* Formatting.
|
||||
|
||||
2009-12-18 01:37 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
|
||||
* contrib/hbqt/hbqt.h
|
||||
* contrib/hbqt/hbqt_base.cpp
|
||||
|
||||
@@ -83,7 +83,7 @@ extern const HB_GC_FUNCS * hbqt_gcFuncs( void );
|
||||
|
||||
extern int hbqt_getmemused( void );
|
||||
|
||||
void * hbqt_pPtrFromObj( int iParam );
|
||||
extern void * hbqt_pPtrFromObj( int iParam );
|
||||
|
||||
#include "hbqt_garbage.h"
|
||||
|
||||
|
||||
@@ -53,7 +53,6 @@
|
||||
|
||||
#include "hbapi.h"
|
||||
#include "hbapiitm.h"
|
||||
#include "hbstack.h"
|
||||
#include "hbvm.h"
|
||||
|
||||
#include "hbqt.h"
|
||||
@@ -103,16 +102,12 @@ void * hbqt_pPtrFromObj( int iParam )
|
||||
hb_vmPush( pObj );
|
||||
hb_vmSend( 0 );
|
||||
|
||||
return( hbqt_gcpointer( -1 ) );
|
||||
return hbqt_gcpointer( -1 );
|
||||
}
|
||||
else if( hb_itemType( pObj ) == HB_IT_POINTER )
|
||||
{
|
||||
return( hbqt_gcpointer( iParam ) );
|
||||
}
|
||||
return hbqt_gcpointer( iParam );
|
||||
else
|
||||
{
|
||||
return( NULL );
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int hbqt_get_object_release_method()
|
||||
|
||||
Reference in New Issue
Block a user