francesco perillo wrote:
> 
> I continued to do some work on the generator and implemented the check
> on ->calls
> 
> From:
> HB_FUNC( QT_QAPPLICATION_CURSORFLASHTIME )
> {
>    hb_retni( hbqt_par_QApplication( 1 )->cursorFlashTime() );
> }
> 
> To:
> HB_FUNC( QT_QAPPLICATION_CURSORFLASHTIME )
> {
>    QApplication * p ;
>    p = hbqt_par_QApplication( 1 ) ;
>    if( p )
>       hb_retni( ( p )->cursorFlashTime() );
>    else
>       HB_TRACE.....
> }
> 

Francesco, carry on.
I am onto it and have spent few hours on your previous upload.
I have noticed some points. Now I will include this patch also and will 
continue to experiment. I will forward detailed analysis later.

I am not replying you because I do not want to influence your line of
thoughts.

BTW you are heading towards right direction.

Try to implement concept like this ( Przemek's code ):

  pObj = ( QPointer< QPageSetupDialog > * ) 
            memset( hb_gcAllocate( sizeof( QPointer< QPageSetupDialog > ), 
                                   &s_gcQPageSetupDialog ), 
                    0, sizeof( QPointer< QPageSetupDialog > ) ); 
   * pObj = obj; 




-----
     enjoy hbIDEing...
        Pritpal Bedi 
http://hbide.vouch.info/
-- 
View this message in context: 
http://n2.nabble.com/Pritpal-and-Vikto-please-test-this-generator-tp4900883p4901678.html
Sent from the harbour-devel mailing list archive at Nabble.com.
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to