From ba0478158a1269c456aea5e36882bac94ef89df2 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Mon, 23 Jul 2001 18:27:35 +0000 Subject: [PATCH] 2001-07-23 18:24 GMT Dave Pearson * source/rtl/profiler.prg * Access method `nSeconds' in class HB_ProfileEntity now used HB_CLOCKS2SECS to calculate seconds. --- harbour/ChangeLog | 7 +++++++ harbour/source/rtl/profiler.prg | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 73379e4050..d860f0ae7a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,4 +1,11 @@ +2001-07-23 18:24 GMT Dave Pearson + + * source/rtl/profiler.prg + * Access method `nSeconds' in class HB_ProfileEntity now used + HB_CLOCKS2SECS to calculate seconds. + 2001-07-23 18:15 GMT Dave Pearson + * source/rtl/seconds.c * Renamed CLOCKS2SECS() to HB_CLOCKS2SECS(). diff --git a/harbour/source/rtl/profiler.prg b/harbour/source/rtl/profiler.prg index 67bd0c25b9..fbaeb430ed 100644 --- a/harbour/source/rtl/profiler.prg +++ b/harbour/source/rtl/profiler.prg @@ -236,7 +236,7 @@ Return( self ) ///// Access nSeconds Class HB_ProfileEntity -Return( ::nTicks / 1000 ) +Return( HB_Clocks2Secs( ::nTicks ) ) /////