marco bra wrote:
> 
> As a very first trying to debug the main variables and i never see the
> terminal output of:
> 
> ?" ------ *xxx " + cRootPath
> 
> is this function called, or might by hbide redirect the standard output ?
> 
> --------------------------------
> 
> FUNCTION hbide_fetchSubPaths( aPaths, cRootPath, lSubs )
>    LOCAL aDir, a_
> 
>    DEFAULT lSubs TO .t.
> 
>    ?" ------ * " + cRootPath
> 
>    IF right( cRootPath, 1 ) != hb_osPathSeparator()
>       cRootPath += hb_osPathSeparator()
>    ENDIF
> 
>    ?" ------ ** " + cRootPath
> 
>    cRootPath := hbide_pathToOSPath( cRootPath )
> 
>    ?" ------ *** " + cRootPath
> 
> 
>    aadd( aPaths, cRootPath )
> 
>    IF lSubs
>       aDir := directory( cRootPath + "*.", "D" )
>       FOR EACH a_ IN aDir
>          IF a_[ 5 ] == "D" .AND. left( a_[ 1 ], 1 ) != "."
>             hbide_fetchSubPaths( @aPaths, cRootPath + a_[ 1 ] )
>          ENDIF
>       NEXT
>    ENDIF
> 
>    RETURN NIL
> 

Qt implemenattion is not GT oriented at all.
So all calls to GT functions will be ignored.
Call hbide_dbg( ... ) instead, you will get the output 
in a debugger - dbgview.exe, search the web.


-----
                 enjoy hbIDEing...
                    Pritpal Bedi 
_a_student_of_software_analysis_&_design_
-- 
View this message in context: 
http://n2.nabble.com/SF-net-SVN-harbour-project-13985-trunk-harbour-tp4629809p4633490.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